cmc-sales/models/page.php

22 lines
400 B
PHP
Raw Normal View History

<?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';
}
?>