Current Path :
/
home
/
develito
/
www
/
administrator
/
components
/
com_tlpteam
/
Or
Select Your Path :
Upload File :
New :
File
Dir
/home/develito/www/administrator/components/com_tlpteam/tlpteam.php
<?php /** * @version 1.0.0 * @package com_tlpteam * @copyright Copyright (C) 2013. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt * @author TechLabPro <techlabpro@gmail.com> - http://www.techlabpro.com */ // no direct access defined('_JEXEC') or die; // Access check. if (!JFactory::getUser()->authorise('core.manage', 'com_tlpteam')) { throw new Exception(JText::_('JERROR_ALERTNOAUTHOR')); } // Include dependancies jimport('joomla.application.component.controller'); $controller = JControllerLegacy::getInstance('Tlpteam'); $controller->execute(JFactory::getApplication()->input->get('task')); $controller->redirect();