Blame | Last modification | View Log | RSS feed
<?phpApp::uses('AppModel', 'Model');/*** Productview Model** @property Product $Product* @property User $User*/class Productview extends AppModel {/*** Validation rules** @var array*/public $validate = array('product_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),),'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),),);//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('Product' => array('className' => 'Product','foreignKey' => 'product_id','conditions' => '','fields' => '','order' => ''),'User' => array('className' => 'User','foreignKey' => 'user_id','conditions' => '','fields' => '','order' => ''));}