| [ Index ] |
PHP Cross Reference of Joomla 2.5.4 DE |
[Summary view] [Print] [Text view]
1 <?php 2 /** 3 * @package Joomla.Administrator 4 * @subpackage com_contact 5 * @copyright Copyright (C) 2005 - 2012 Open Source Matters, Inc. All rights reserved. 6 * @license GNU General Public License version 2 or later; see LICENSE.txt 7 */ 8 9 // no direct access 10 defined('_JEXEC') or die; 11 12 // Access check. 13 if (!JFactory::getUser()->authorise('core.manage', 'com_contact')) { 14 return JError::raiseWarning(404, JText::_('JERROR_ALERTNOAUTHOR')); 15 } 16 17 // Include dependancies 18 jimport('joomla.application.component.controller'); 19 20 $controller = JController::getInstance('contact'); 21 $controller->execute(JRequest::getCmd('task')); 22 $controller->redirect();
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
| Generated: Tue Apr 3 11:40:28 2012 | Cross-referenced by PHPXref 0.7.1 |