array( 'rule' => 'unique', 'required' => true, 'message' => 'Username must be unique' ), // 'password' => array('maxlength'), 'email' => array('email'), // 'job_title' => array('custom') ); */ //The Associations below have been created with all possible keys, those that are not needed can be removed var $hasMany = array( 'Enquiry' => array('className' => 'Enquiry', 'foreignKey' => 'user_id', 'dependent' => false, 'conditions' => '', 'fields' => '', 'order' => '', 'limit' => '', 'offset' => '', 'exclusive' => '', 'finderQuery' => '', 'counterQuery' => '' ) ); var $actsAs = array('Acl' => array('requester')); function parentNode() { if (!$this->id && empty($this->data)) { return null; } $data = $this->data; if (empty($this->data)) { $data = $this->read(); } if (!$data['User']['group_id']) { return null; } else { return array('Group' => array('id' => $data['User']['group_id'])); } } } ?>