<?php
App::uses('AppModel', 'Model');
/**
* Category Model
*
* @property Menu $Menu
*/
class Category extends AppModel
{
/**
* Display field
*
* @var string
*/
public $displayField = 'name';
/**
* Validation rules
*
* @var array
*/
public $order = 'Category.id DESC';
public $validate = array(
'name' => array(
'unique' => array(
'rule' => array('isUnique'),
'message' => 'Category already exists'
),
'notBlank' => array(
'rule' => array('notBlank'),
'message' => 'Category cannot be empty',
//'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
/**
* hasMany associations
*
* @var array
*/
public $hasMany = array(
'Applicant' => array(
'className' => 'Applicant',
'foreignKey' => 'category_id',
'dependent' => false,
'conditions' => '',
'fields' => '',
'order' => '',
'limit' => '',
'offset' => '',
'exclusive' => '',
'finderQuery' => '',
'counterQuery' => ''
)
);
}