62 lines
1.5 KiB
PHP
Executable file
62 lines
1.5 KiB
PHP
Executable file
<?php
|
|
class Principle extends AppModel {
|
|
|
|
var $name = 'Principle';
|
|
|
|
var $recursive = 0;
|
|
|
|
var $order = 'Principle.name ASC';
|
|
|
|
//The Associations below have been created with all possible keys, those that are not needed can be removed
|
|
var $belongsTo = array(
|
|
'Country' => array('className' => 'Country',
|
|
'foreignKey' => 'country_id',
|
|
'conditions' => '',
|
|
'fields' => '',
|
|
'order' => ''
|
|
),
|
|
'Currency' => array('className' => 'Currency',
|
|
'foreignKey' => 'currency_id',
|
|
'conditions' => '',
|
|
'fields' => '',
|
|
'order' => ''
|
|
)
|
|
);
|
|
|
|
var $hasMany = array(
|
|
'Enquiry' => array('className' => 'Enquiry',
|
|
'foreignKey' => 'principle_id',
|
|
'dependent' => false,
|
|
'conditions' => '',
|
|
'fields' => '',
|
|
'order' => '',
|
|
'limit' => '',
|
|
'offset' => '',
|
|
'exclusive' => '',
|
|
'finderQuery' => '',
|
|
'counterQuery' => ''
|
|
),
|
|
'Product' => array('className' => 'Product',
|
|
'foreignKey' => 'principle_id',
|
|
'dependent' => false,
|
|
'conditions' => '',
|
|
'fields' => '',
|
|
'order' => '',
|
|
'limit' => '',
|
|
'offset' => '',
|
|
'exclusive' => '',
|
|
'finderQuery' => '',
|
|
'counterQuery' => ''
|
|
),
|
|
'PrincipleAddress' => array('className' => 'PrincipleAddress',
|
|
'foreignKey' => 'principle_id'
|
|
),
|
|
|
|
'PrincipleContact' => array('className' => 'Users',
|
|
'foreignKey' => 'principle_id'
|
|
),
|
|
);
|
|
|
|
}
|
|
?>
|