Spade

Mini Shell

Directory:~$ /home/lmsyaran/www/administrator/components/com_rsticketspro/views/kbcategories/
Upload File

[Home] [System Details] [Kill Me]
Current File:~$ /home/lmsyaran/www/administrator/components/com_rsticketspro/views/kbcategories/view.html.php

<?php
/**
 * @package    RSTickets! Pro
 *
 * @copyright  (c) 2010 - 2016 RSJoomla!
 * @link       https://www.rsjoomla.com
 * @license    GNU General Public License
http://www.gnu.org/licenses/gpl-3.0.en.html
 */

defined('_JEXEC') or die('Restricted access');

class RsticketsproViewKbcategories 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');

		parent::display($tpl);
	}
	
	protected function addToolbar()
	{
		// set title
		JToolbarHelper::title('RSTickets! Pro',
'rsticketspro');

		RSTicketsProToolbarHelper::addToolbar('kbcategories');

		$user = JFactory::getUser();

		if ($user->authorise('kbcategory.create',
'com_rsticketspro'))
		{
			JToolbarHelper::addNew('kbcategory.add');
		}
		if ($user->authorise('kbcategory.edit',
'com_rsticketspro'))
		{
			JToolbarHelper::editList('kbcategory.edit');
		}
		if ($user->authorise('kbcategory.edit.state',
'com_rsticketspro'))
		{
			JToolbarHelper::publish('kbcategories.publish',
'JTOOLBAR_PUBLISH', true);
			JToolbarHelper::unpublish('kbcategories.unpublish',
'JTOOLBAR_UNPUBLISH', true);
		}
		if ($user->authorise('kbcategory.delete',
'com_rsticketspro'))
		{
			JToolbarHelper::deleteList('RST_CONFIRM_DELETE',
'kbcategories.delete');
		}
	}
}