Blame | Last modification | View Log | RSS feed
<?phpApp::uses('AppModel', 'Model');/*** Appaclrevision Model**/class Appaclrevision extends AppModel {/*** Validation rules** @var array*/public $validate = array('user_id' => array('numeric' => array('rule' => array('numeric'),//'message' => 'Your custom message here',//'allowEmpty' => false,//'required' => false,//'last' => false, // Stop validation after this rule//'on' => 'create', // Limit validation to 'create' or 'update' operations),),);}