24 lines
464 B
PHP
Executable file
24 lines
464 B
PHP
Executable file
<?php
|
|
class PrincipleAddress extends AppModel {
|
|
|
|
var $name = 'PrincipleAddress';
|
|
|
|
|
|
var $belongsTo = array(
|
|
'Principle' => array('className' => 'Principle',
|
|
'foreignKey' => 'principle_id',
|
|
'conditions' => '',
|
|
'fields' => '',
|
|
'order' => ''
|
|
),
|
|
|
|
'Country' => array('className' => 'Country',
|
|
'foreignKey' => 'country_id',
|
|
'conditions' => '',
|
|
'fields' => '',
|
|
'order' => ''));
|
|
|
|
|
|
|
|
}
|