Blame | Last modification | View Log | RSS feed
<?phpApp::uses('AppModel', 'Model');/*** PaytmCoupon Model**/class PaytmCoupon extends AppModel {/*** Display field** @var string*/public $displayField = 'coupon';/*** Validation rules** @var array*/public $validate = array('coupon' => 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),),);}