uawdijnntqw1x1x1
IP : 104.23.243.168
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
/
..
/
templates
/
g5_hydrogen
/
includes
/
gantry.php
/
/
<?php /** * @package Gantry 5 Theme * @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; use Gantry\Framework\Gantry; try { $app = JFactory::getApplication('site'); $template = $app->getTemplate(true); if (!class_exists('Gantry5\Loader')) { throw new RuntimeException(JText::_('GANTRY5_THEME_INSTALL_GANTRY')); } // Setup Gantry 5 Framework or throw exception. Gantry5\Loader::setup(); // Get Gantry instance and return it. $gantry = Gantry::instance(); // Initialize the template if not done already. if (!isset($gantry['theme.name'])) { $gantry['theme.path'] = dirname(__DIR__); $gantry['theme.name'] = $template->template; } // Only a single template can be loaded at any time. if (!isset($gantry['theme']) && file_exists(__DIR__ . '/theme.php')) { include_once __DIR__ . '/theme.php'; } return $gantry; } catch (Exception $e) { // Oops, something went wrong! header("HTTP/1.0 500 Internal Server Error"); $message = JText::sprintf("GANTRY5_THEME_LOADING_FAILED", $template->template, $e->getMessage()); echo <<<html <html> <head> <title>500 Internal Server Error</title> <style> .alert { padding: 8px 35px 8px 14px; margin-bottom: 18px; text-shadow: 0px 1px 0px rgba(255, 255, 255, 0.5); background-color: #F2DEDE; border-color: #EED3D7; color: #B94A48; border-radius: 4px; font-size: 1.2em; } </style> </head> <body> <div class="alert">{$message}</div> </body> </html> html; die(); }
/var/www/html/Joomla/b2748/../templates/g5_hydrogen/includes/gantry.php