Files
yii/tests/framework/validators/ValidatorTestModel.php
2013-04-17 00:01:25 +06:00

17 lines
399 B
PHP

<?php
class ValidatorTestModel extends CFormModel
{
public $email;
public $url;
public $username;
public function rules()
{
return array(
array('email', 'email', 'allowEmpty' => false, 'on' => 'CEmailValidatorTest'),
array('url', 'url', 'allowEmpty' => false, 'on' => 'CUrlValidatorTest'),
array('username', 'required', 'trim' => false, 'on' => 'CRequiredValidatorTest'),
);
}
}