cmc-sales/app/models/product.php

24 lines
462 B
PHP
Raw Normal View History

<?php
class Product extends AppModel {
var $name = 'Product';
var $hasMany = array('ProductAttachment', 'ProductOptionsCategory');
//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 22:11:22 +00:00
),
2009-11-20 04:27:07 +00:00
);
}
?>