Spade

Mini Shell

Directory:~$ /home/lmsyaran/public_html/administrator/components/com_rsticketspro/views/history/
Upload File

[Home] [System Details] [Kill Me]
Current File:~$ /home/lmsyaran/public_html/administrator/components/com_rsticketspro/views/history/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 RsticketsproViewHistory extends JViewLegacy
{
	protected $id;
	protected $items;
	protected $pagination;
	protected $state;
	protected $dateFormat;
	protected $userField;
	
	public function display($tpl = null)
	{
		if (!$this->hasPermission())
		{
			throw new Exception(JText::_('RST_CANNOT_VIEW_HISTORY'),
403);
		}
		
		$this->id 			= $this->get('Id');
		$this->items 		= $this->get('Items');
		$this->pagination 	= $this->get('Pagination');
		$this->state 		= $this->get('State');
		$this->dateFormat 	=
RSTicketsProHelper::getConfig('date_format');
		$this->userField	=
RSTicketsProHelper::getConfig('show_user_info');
		
		parent::display($tpl);
	}
	
	protected function showDate($date)
	{
		return JHtml::_('date', $date, $this->dateFormat);
	}
	
	protected function showUser($user_id)
	{
		static $cache = array();

		if (!isset($cache[$user_id]))
		{
			$cache[$user_id] = $user_id ?
JFactory::getUser($user_id)->{$this->userField} : '-';
		}

		return $cache[$user_id];
	}
	
	protected function hasPermission()
	{
		// get id
		$id = $this->get('Id');
		// get model
		$model = JModelLegacy::getInstance('Ticket',
'RsticketsproModel', array(
			'option' => 'com_rsticketspro',
			'table_path' =>
JPATH_ADMINISTRATOR.'/components/com_rsticketspro/tables'
		));
		
		// check if options are enabled
		$viewingHistory =
RSTicketsProHelper::getConfig('ticket_viewing_history');
		if ($viewingHistory && (($viewingHistory == 1 &&
$model->isStaff()) || ($viewingHistory == 2)))
		{
			// check if ticket can be opened
			return $model->hasPermission($id);
		}
		
		return false;
	}
}