cmc-sales/models/page.php
2011-01-11 19:52:52 +11:00

22 lines
400 B
PHP
Executable file

<?php
class Page extends AppModel {
var $name = 'Page';
//The Associations below have been created with all possible keys, those that are not needed can be removed
var $belongsTo = array(
'Document' => array(
'className' => 'Document',
'foreignKey' => 'document_id',
'conditions' => '',
'fields' => '',
'order' => ''
)
);
var $order = 'Page.page_number ASC';
}
?>