Current Path :
/
home
/
develito
/
www
/
tmp
/
install_5ed6912857891
/
admin
/
Or
Select Your Path :
Upload File :
New :
File
Dir
/home/develito/www/tmp/install_5ed6912857891/admin/visforms.php
<?php /** * Form component for Joomla * * @author Aicha Vack * @package Joomla.Administrator * @subpackage com_visforms * @link http://www.vi-solutions.de * @license GNU General Public License version 2 or later; see license.txt * @copyright 2012 vi-solutions * @since Joomla 1.6 */ // no direct access defined('_JEXEC') or die('Restricted access'); include_once __DIR__ .'/include.php'; // Access check: is this user allowed to access the backend of this component? if (!JFactory::getUser()->authorise('core.manage', 'com_visforms')) { return JError::raiseWarning(404, JText::_('JERROR_ALERTNOAUTHOR')); } JHtml::_('behavior.tabstate'); // Create the controller $controller = JControllerLegacy::getInstance('Visforms'); $controller->execute(JFactory::getApplication()->input->get('task')); // Redirect if set by the controller $controller->redirect();