Current Path :
/
home
/
develito
/
public_html
/
components
/
com_tlpteam
/
Or
Select Your Path :
Upload File :
New :
File
Dir
/home/develito/public_html/components/com_tlpteam/tlpteam.php
<?php /** * @version 2.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 */ defined('_JEXEC') or die; require_once JPATH_COMPONENT . '/helpers/tlpteam.php'; // Include dependancies jimport('joomla.application.component.controller'); $document = JFactory::getDocument(); $document->addStyleSheet('components/com_tlpteam/assets/css/tlpteam.css'); // Execute the task. $controller = JControllerLegacy::getInstance('Tlpteam'); $controller->execute(JFactory::getApplication()->input->get('task')); $controller->redirect();