58ddb97d87
Added schedules Added management classes for a node Added clientopts to nodes Added schedule and event information
25 lines
689 B
PHP
25 lines
689 B
PHP
<?php defined('SYSPATH') or die('No direct access allowed.');
|
|
|
|
/**
|
|
*
|
|
* @package PTA
|
|
* @subpackage Client Schedule Associations
|
|
* @category Models
|
|
* @author Deon George
|
|
* @copyright (c) 2010 phpTSMadmin Development Team
|
|
* @license http://phptsmadmin.sf.net/license.html
|
|
*/
|
|
class Model_ASSOCIATION extends ORMTSM {
|
|
protected $_table_name = 'ASSOCIATIONS';
|
|
protected $_primary_key = 'DOMAIN_NAME'; // We need a primary key to detect that the object is loaded.
|
|
protected $_sorting = array(
|
|
'SCHEDULE_NAME'=>'ASC',
|
|
'NODE_NAME'=>'ASC',
|
|
);
|
|
|
|
protected $_has_one = array(
|
|
'SCHEDULE_CLIENT'=>array('foreign_key'=>'SCHEDULE_NAME','far_key'=>'SCHEDULE_NAME'),
|
|
);
|
|
}
|
|
?>
|