Spade
Mini Shell
| Directory:~$ /proc/self/root/home/lmsyaran/public_html/components/com_rsticketspro/views/submit/ |
| [Home] [System Details] [Kill Me] |
<?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 RsticketsproViewSubmit extends JViewLegacy
{
public function display($tpl = null)
{
$app = JFactory::getApplication();
if (!$this->canView())
{
$app->enqueueMessage(JText::_('RST_CANNOT_SUBMIT_TICKET'),
'warning');
$app->redirect(RSTicketsProHelper::route('index.php?option=com_users&view=login&return='
. base64_encode((string) JUri::getInstance()), false));
}
$this->globalMessage =
JText::_(RSTicketsProHelper::getConfig('global_message'));
$this->submitMessage =
JText::_(RSTicketsProHelper::getConfig('submit_message'));
$this->form = $this->get('Form');
$this->departments = $this->get('Departments');
$this->customFields = $this->get('CustomFields');
$this->user = JFactory::getUser();
$this->permissions = $this->get('Permissions');
$this->isStaff = RSTicketsProHelper::isStaff();
$this->canChangeSubmitType = $this->isStaff &&
$this->permissions &&
($this->permissions->add_ticket_customers ||
$this->permissions->add_ticket_staff);
$this->hasCaptcha = $this->get('HasCaptcha');
$this->captchaType =
RSTicketsProHelper::getConfig('captcha_enabled');
$this->hasConsent =
RSTicketsProHelper::getConfig('forms_consent');
$this->showAltEmail =
RSTicketsProHelper::getConfig('show_alternative_email');
$this->params = $app->getParams();
$this->prepareDocument();
parent::display($tpl);
}
protected function prepareDocument()
{
$app = JFactory::getApplication();
$menus = $app->getMenu();
$title = null;
// Because the application sets a default page title,
// we need to get it from the menu item itself
$menu = $menus->getActive();
if ($menu)
{
$this->params->def('page_heading',
$this->params->get('page_title', $menu->title));
}
else
{
$this->params->def('page_heading',
JText::_('RST_ADD_NEW_TICKET'));
}
$title = $this->params->get('page_title', '');
if (empty($title))
{
$title = $app->get('sitename');
}
elseif ($app->get('sitename_pagetitles', 0) == 1)
{
$title = JText::sprintf('JPAGETITLE',
$app->get('sitename'), $title);
}
elseif ($app->get('sitename_pagetitles', 0) == 2)
{
$title = JText::sprintf('JPAGETITLE', $title,
$app->get('sitename'));
}
$this->document->setTitle($title);
if ($this->params->get('menu-meta_description'))
{
$this->document->setDescription($this->params->get('menu-meta_description'));
}
if ($this->params->get('menu-meta_keywords'))
{
$this->document->setMetadata('keywords',
$this->params->get('menu-meta_keywords'));
}
if ($this->params->get('robots'))
{
$this->document->setMetadata('robots',
$this->params->get('robots'));
}
}
protected function canView()
{
$canAddTickets =
RSTicketsProHelper::getConfig('rsticketspro_add_tickets');
$guest = JFactory::getUser()->get('guest');
if (!$canAddTickets && $guest)
{
return false;
}
return true;
}
}