Initial node display

This commit is contained in:
Deon George
2011-04-07 15:03:05 +10:00
parent 6d858a982a
commit d053493eeb
11 changed files with 485 additions and 8 deletions

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