22 lines
409 B
PHP
22 lines
409 B
PHP
|
|
<?php
|
||
|
|
class DocPage extends AppModel {
|
||
|
|
|
||
|
|
var $name = 'DocPage';
|
||
|
|
|
||
|
|
//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 = 'DocPage.page_number ASC';
|
||
|
|
|
||
|
|
}
|
||
|
|
?>
|