%PDF- %PDF-
Direktori : /home1/lightco1/www/lightingrepublic.com.au/components/com_content/ |
Current File : //home1/lightco1/www/lightingrepublic.com.au/components/com_content/content.php |
<?php /** * @package Joomla.Site * @subpackage com_content * * @copyright Copyright (C) 2005 - 2016 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt */ defined('_JEXEC') or die; require_once JPATH_COMPONENT . '/helpers/route.php'; require_once JPATH_COMPONENT . '/helpers/query.php'; $input = JFactory::getApplication()->input; $user = JFactory::getUser(); if ($input->get('view') === 'article' && $input->get('layout') === 'pagebreak') { if (!$user->authorise('core.edit', 'com_content')) { JFactory::getApplication()->enqueueMessage(JText::_('JERROR_ALERTNOAUTHOR'), 'warning'); return; } } elseif ($input->get('view') === 'articles' && $input->get('layout') === 'modal') { if (!$user->authorise('core.edit', 'com_content')) { JFactory::getApplication()->enqueueMessage(JText::_('JERROR_ALERTNOAUTHOR'), 'warning'); return; } } $controller = JControllerLegacy::getInstance('Content'); $controller->execute($input->get('task')); $controller->redirect();