mirror of
https://github.com/yiisoft/yii.git
synced 2026-03-04 07:14:06 +01:00
15 lines
295 B
PHP
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'),
|
|
);
|
|
}
|
|
}
|