cmc-sales/models/country.php

58 lines
1.4 KiB
PHP
Raw Normal View History

<?php
class Country extends AppModel {
var $name = 'Country';
2010-04-06 20:57:30 -07:00
var $order = "Country.name ASC";
//The Associations below have been created with all possible keys, those that are not needed can be removed
var $belongsTo = array(
'Currency' => array('className' => 'Currency',
'foreignKey' => 'currency_id',
'conditions' => '',
'fields' => '',
'order' => ''
)
);
var $hasMany = array(
'Address' => array('className' => 'Address',
'foreignKey' => 'country_id',
'dependent' => false,
'conditions' => '',
'fields' => '',
'order' => '',
'limit' => '',
'offset' => '',
'exclusive' => '',
'finderQuery' => '',
'counterQuery' => ''
),
'Enquiry' => array('className' => 'Enquiry',
'foreignKey' => 'country_id',
'dependent' => false,
'conditions' => '',
'fields' => '',
'order' => '',
'limit' => '',
'offset' => '',
'exclusive' => '',
'finderQuery' => '',
'counterQuery' => ''
),
'Principle' => array('className' => 'Principle',
'foreignKey' => 'country_id',
'dependent' => false,
'conditions' => '',
'fields' => '',
'order' => '',
'limit' => '',
'offset' => '',
'exclusive' => '',
'finderQuery' => '',
'counterQuery' => ''
)
);
}
?>