Blame | Last modification | View Log | RSS feed
<?phpApp::uses('AppModel', 'Model');/*** UserActivityStatus Model** @property User $User*/class UserActivityStatus extends AppModel {/*** Use table** @var mixed False or table name*/public $useTable = 'user_activity_status';/*** Primary key field** @var string*/public $primaryKey = 'created';/*** 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),),'comment' => array('notEmpty' => array('rule' => array('notEmpty'),//'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),),'last_active' => array('datetime' => array('rule' => array('datetime'),//'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),),'last_active_diff' => 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),),);//The Associations below have been created with all possible keys, those that are not needed can be removed/*** belongsTo associations** @var array*/public $belongsTo = array('User' => array('className' => 'User','foreignKey' => 'user_id','conditions' => '','fields' => '','order' => ''));}