cmc-sales/models/quote_page.php
2009-10-10 18:06:46 +11:00

23 lines
485 B
PHP

<?php
class QuotePage extends AppModel {
var $name = 'QuotePage';
var $validate = array(
'page_number' => array('numeric'),
'content' => array('notempty'),
'quote_id' => array('numeric')
);
//The Associations below have been created with all possible keys, those that are not needed can be removed
var $belongsTo = array(
'Quote' => array(
'className' => 'Quote',
'foreignKey' => 'quote_id',
'conditions' => '',
'fields' => '',
'order' => ''
)
);
}
?>