mirror of
https://github.com/yiisoft/yii.git
synced 2026-02-20 01:21:22 +01:00
23 lines
336 B
PHP
23 lines
336 B
PHP
<?php
|
|
|
|
class NewModel extends CModel
|
|
{
|
|
public $attr1;
|
|
public $attr2;
|
|
public $attr3;
|
|
public $attr4;
|
|
|
|
public function rules()
|
|
{
|
|
return array(
|
|
array('attr2,attr1','numerical','max'=>5),
|
|
array('attr1','required'),
|
|
array('attr3', 'unsafe'),
|
|
);
|
|
}
|
|
|
|
public function attributeNames()
|
|
{
|
|
return array('attr1','attr2');
|
|
}
|
|
} |