17 lines
393 B
PHP
17 lines
393 B
PHP
|
|
<?php
|
||
|
|
class ProductAttachment extends AppModel {
|
||
|
|
|
||
|
|
var $name = 'ProductAttachment';
|
||
|
|
|
||
|
|
//The Associations below have been created with all possible keys, those that are not needed can be removed
|
||
|
|
var $belongsTo = array(
|
||
|
|
'Product' => array('className' => 'Product',
|
||
|
|
'foreignKey' => 'product_id',
|
||
|
|
'conditions' => '',
|
||
|
|
'fields' => '',
|
||
|
|
'order' => ''
|
||
|
|
)
|
||
|
|
);
|
||
|
|
|
||
|
|
}
|
||
|
|
?>
|