uawdijnntqw1x1x1
IP : 104.23.243.223
Hostname : vps-ebe98236
Kernel : Linux vps-ebe98236 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64
Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
OS : Linux
PATH:
/
var
/
www
/
html
/
Joomla
/
b2748
/
..
/
administrator
/
.
/
components
/
com_gantry5
/
gantry5.php
/
/
<?php /** * @package Gantry 5 * @author RocketTheme http://www.rockettheme.com * @copyright Copyright (C) 2007 - 2017 RocketTheme, LLC * @license GNU/GPLv2 and later * * http://www.gnu.org/licenses/gpl-2.0.html */ defined('_JEXEC') or die; $user = JFactory::getUser(); $app = JFactory::getApplication(); // ACL for Gantry admin access. if (!$user->authorise('core.manage', 'com_gantry5') && !$user->authorise('core.manage', 'com_templates') // Editing particle module makes AJAX call to Gantry component, but has restricted access to json only. && !($user->authorise('core.manage', 'com_modules') && $app->input->request->getString('format') === 'json') ) { $app->enqueueMessage(JText::_('JERROR_ALERTNOAUTHOR'), 'error'); return false; } if (!defined('GANTRYADMIN_PATH')) { define('GANTRYADMIN_PATH', JPATH_COMPONENT_ADMINISTRATOR); } // Detect Gantry Framework or fail gracefully. if (!class_exists('Gantry5\Loader')) { $app->enqueueMessage( JText::sprintf('COM_GANTRY5_PLUGIN_MISSING', JText::_('COM_GANTRY5')), 'error' ); return; } // Initialize administrator or fail gracefully. try { Gantry5\Loader::setup(); $gantry = Gantry\Framework\Gantry::instance(); $gantry['router'] = function ($c) { return new \Gantry\Admin\Router($c); }; } catch (Exception $e) { $app->enqueueMessage( JText::sprintf($e->getMessage()), 'error' ); return; } // Dispatch to the controller. $gantry['router']->dispatch();
/var/www/html/Joomla/b2748/../administrator/./components/com_gantry5/gantry5.php