23 lines
531 B
PHP
23 lines
531 B
PHP
|
|
<?php
|
||
|
|
class Status extends AppModel {
|
||
|
|
|
||
|
|
var $name = 'Status';
|
||
|
|
|
||
|
|
//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' => 'status_id',
|
||
|
|
'dependent' => false,
|
||
|
|
'conditions' => '',
|
||
|
|
'fields' => '',
|
||
|
|
'order' => '',
|
||
|
|
'limit' => '',
|
||
|
|
'offset' => '',
|
||
|
|
'exclusive' => '',
|
||
|
|
'finderQuery' => '',
|
||
|
|
'counterQuery' => ''
|
||
|
|
)
|
||
|
|
);
|
||
|
|
|
||
|
|
}
|
||
|
|
?>
|