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 ), //'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 ), 'FrameId' => 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 ), //'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 ), 'MonitorId' => array( 'numeric' => array( 'rule' => array('numeric'), ), ), 'TimeStamp' => array( 'time' => 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 ), ), 'Data' => array( 'text' => array( 'rule' => array('text'), //'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( 'Event' => array( 'className' => 'Event', 'foreignKey' => 'EventId', 'conditions' => '', 'fields' => '', 'order' => '' ), 'Monitor' => array( 'className' => 'Monitor', 'foreignKey' => 'MonitorId', 'conditions' => '', 'fields' => '', 'order' => '' ), 'Monitor' => array( 'className' => 'Frame', 'foreignKey' => 'FrameId', 'conditions' => '', 'fields' => '', 'order' => '' ) ); public $recursive = -1; }