mirror of
https://github.com/yiisoft/yii.git
synced 2026-03-03 23:04:04 +01:00
10 lines
241 B
PHP
10 lines
241 B
PHP
<?php
|
|
class NewFormModel extends CFormModel {
|
|
public function behaviors() {
|
|
return array(
|
|
'newBeforeValidateBehavior' => array(
|
|
'class' => 'NewBeforeValidateBehavior',
|
|
),
|
|
);
|
|
}
|
|
} |