Initial node display
This commit is contained in:
27
application/classes/model/occupancy.php
Normal file
27
application/classes/model/occupancy.php
Normal file
@@ -0,0 +1,27 @@
|
||||
<?php defined('SYSPATH') or die('No direct access allowed.');
|
||||
|
||||
/**
|
||||
*
|
||||
* @package PTA
|
||||
* @subpackage Occupancy
|
||||
* @category Models
|
||||
* @author Deon George
|
||||
* @copyright (c) 2010 phpTSMadmin Development Team
|
||||
* @license http://phptsmadmin.sf.net/license.html
|
||||
*/
|
||||
class Model_OCCUPANCY extends ORMTSM {
|
||||
protected $_table_name = 'OCCUPANCY';
|
||||
protected $_primary_key = 'FILESPACE_NAME';
|
||||
protected $_has_many = array(
|
||||
);
|
||||
|
||||
protected $_formats = array(
|
||||
);
|
||||
|
||||
protected $_sorting = array(
|
||||
'NODE_NAME'=>'ASC',
|
||||
'FILESPACE_NAME'=>'ASC',
|
||||
'STGPOOL_NAME'=>'ASC',
|
||||
);
|
||||
}
|
||||
?>
|
Reference in New Issue
Block a user