17 lines
397 B
PHP
17 lines
397 B
PHP
|
|
<?php
|
||
|
|
class PrincipleContact extends AppModel {
|
||
|
|
|
||
|
|
var $name = 'PrincipleContact';
|
||
|
|
|
||
|
|
//The Associations below have been created with all possible keys, those that are not needed can be removed
|
||
|
|
var $belongsTo = array(
|
||
|
|
'Principle' => array('className' => 'Principle',
|
||
|
|
'foreignKey' => 'principle_id',
|
||
|
|
'conditions' => '',
|
||
|
|
'fields' => '',
|
||
|
|
'order' => ''
|
||
|
|
)
|
||
|
|
);
|
||
|
|
|
||
|
|
}
|
||
|
|
?>
|