Blame | Last modification | View Log | RSS feed
<?phpApp::uses('AppModel', 'Model');/*** StoreCashback Model** @property Store $Store* @property Category $Category*/class StoreCashback extends AppModel {/*** Display field** @var string*/public $displayField = 'store_id';/*** Validation rules** @var array*/public $validate = array('store_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),),'category_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),),);//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('Store' => array('className' => 'Store','foreignKey' => 'store_id','conditions' => '','fields' => '','order' => ''),'Category' => array('className' => 'Category','foreignKey' => 'category_id','conditions' => '','fields' => '','order' => ''));}