Spade
Mini Shell
| Directory:~$ /home/lmsyaran/www/administrator/components/com_rsticketspro/views/reports/ |
| [Home] [System Details] [Kill Me] |
<?php
/**
* @version 2.0.0
* @package RSTickets! Pro 2.0.0
* @copyright (C) 2010 www.rsjoomla.com
* @license GPL, http://www.gnu.org/licenses/gpl-2.0.html
*/
defined('_JEXEC') or die('Restricted access');
class RsticketsproViewReports extends JViewLegacy
{
public function display($tpl = null) {
$this->data = $this->get('reportdata');
$this->min = $this->get('min');
$this->avg = $this->get('avg');
$this->max = $this->get('max');
$this->total = $this->get('total');
parent::display($tpl);
}
}