22 lines
400 B
PHP
Executable file
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';
|
|
|
|
}
|
|
?>
|