25 lines
570 B
PHP
Executable file
25 lines
570 B
PHP
Executable file
<?php
|
|
class Product extends AppModel {
|
|
|
|
var $name = 'Product';
|
|
|
|
|
|
var $hasMany = array('ProductOption', 'ProductAttachment');
|
|
|
|
//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' => ''
|
|
),
|
|
|
|
'ProductCategory' => array('className'=>'ProductCategory',
|
|
'foreignKey' => 'product_category_id'
|
|
)
|
|
);
|
|
|
|
}
|
|
?>
|