Files
yii/tests/framework/validators/ValidatorTestModel.php
2012-08-25 16:16:51 +06:00

15 lines
295 B
PHP

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