| Current Path : /var/www/iplanru/data/www/i-plan.ru/administrator/components/com_sef/views/logger/ |
| Current File : /var/www/iplanru/data/www/i-plan.ru/administrator/components/com_sef/views/logger/view.html.php |
<?php
/**
* SEF component for Joomla!
*
* @package JoomSEF
* @version 4.7.8
* @author ARTIO s.r.o., http://www.artio.net
* @copyright Copyright (C) 2020 ARTIO s.r.o.
* @license GNU/GPLv3 http://www.artio.net/license/gnu-general-public-license
*/
// Check to ensure this file is included in Joomla!
defined('_JEXEC') or die();
jimport( 'joomla.application.component.view' );
class SefViewLogger extends SefView
{
function display($tpl = null)
{
JToolBarHelper::title(JText::_('COM_SEF_LOGS_TITLE'), '404-logs.png');
JToolBarHelper::custom('clear', 'clear', '', 'COM_SEF_LOGS_CLEAR', false);
JToolBarHelper::spacer();
JToolBarHelper::back('COM_SEF_BACK', 'index.php?option=com_sef');
// Get data from the model
$this->assign('items', $this->get('Data'));
$this->assign('total', $this->get('Total'));
$this->assign('lists', $this->get('Lists'));
$this->assign('pagination', $this->get('Pagination'));
$enabled = $this->get('Enabled');
if (!$enabled) {
$app = JFactory::getApplication();
$app->enqueueMessage(JText::_('COM_SEF_LOGS_DISABLED_NOTICE'));
}
JHTML::_('behavior.tooltip');
parent::display($tpl);
}
}