2009-01-12 21:13:18 -08:00
|
|
|
<?php
|
|
|
|
|
class Product extends AppModel {
|
|
|
|
|
|
|
|
|
|
var $name = 'Product';
|
|
|
|
|
|
|
|
|
|
|
2009-09-09 20:23:39 -07:00
|
|
|
var $hasMany = array('ProductAttachment', 'ProductOptionsCategory');
|
2009-01-12 21:13:18 -08:00
|
|
|
|
|
|
|
|
//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' => ''
|
2009-03-19 15:11:22 -07:00
|
|
|
),
|
|
|
|
|
|
2009-11-19 20:27:07 -08:00
|
|
|
|
2009-01-12 21:13:18 -08:00
|
|
|
);
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
?>
|