Last active
January 3, 2016 07:29
-
-
Save Narven/8429578 to your computer and use it in GitHub Desktop.
Yii Active Record Rules
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| public function rules() | |
| { | |
| return array( | |
| array( 'field', 'required' ), | |
| array( 'field', 'numerical', 'integerOnly' => true ), | |
| array( 'field, field2', 'length', 'max' => 10 ), | |
| array( 'field, field2', 'safe', 'on' => 'search' ), | |
| array( 'status', 'safe' ), | |
| array('field', 'in', 'range' => array(0,1), 'allowEmpty' => false ), // dropdowns | |
| array( 'record_date', 'default', 'value' => new CDbExpression( 'NOW()' ), 'setOnEmpty' => true, 'on' => 'insert' ), | |
| ) | |
| } | |
| ?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment