This repository has been archived on 2024-04-08. You can view files and clone it, but cannot push or open issues or pull requests.
phptsmadmin/application/classes/Model/ACTSUM.php
2012-12-12 21:39:00 +11:00

64 lines
1.5 KiB
PHP

<?php defined('SYSPATH') or die('No direct access allowed.');
/**
*
* @package PTA
* @subpackage Activity Summary
* @category Models
* @author Deon George
* @copyright (c) 2010 phpTSMadmin Development Team
* @license http://phptsmadmin.sf.net/license.html
*/
class Model_ACTSUM extends ORM_TSM {
protected $_table_name = 'ACTIVITY_SUMMARY';
protected $_primary_key = 'START_TIME';
protected $_sorting = array(
'START_TIME'=>'ASC',
);
protected $_has_one = array(
'NODE'=>array('foreign_key'=>'NODE_NAME','far_key'=>'ENTITY'),
);
protected $_display_filters = array(
'START_TIME'=>array(
array('ORM_TSM::date',array(':value','d-M H:i')),
),
'END_TIME'=>array(
array('ORM_TSM::date',array(':value','d-M H:i')),
),
);
/**
* Return if this ACTIVITY SUMMARY would be still in the ACTIVITY LOG
*/
public function inActLog() {
return ORM_TSM::date(ORM::factory('ACTLOG')->FirstRec(),'U') <= $this->start();
}
/**
* Get the ACTIVITY LOG data for this SESSION
*/
public function actlog() {
if (! isset($this->ENTITY))
throw new Kohana_Exception('Activity Summary has no NODENAME data');
return $this->NODE->actlog_session($this->NUMBER,$this->start());
}
/**
* Return this ACTIVITY SUMMARY in GB
*/
public function bytes() {
return (real)number_format($this->BYTES/1024/1024,0,'','');
}
/**
* Return this ACTIVITY SUMMARY start time in seconds since epoch
*/
public function start() {
return ORM_TSM::date($this->START_TIME,'U');
}
}
?>