uawdijnntqw1x1x1
IP : 172.71.28.205
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
/
..
/
modules
/
mod_gantry5_particle
/
mod_gantry5_particle.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; // Detect Gantry Framework or fail gracefully. if (!class_exists('Gantry\Framework\Gantry')) { $lang = JFactory::getLanguage(); JFactory::getApplication()->enqueueMessage( JText::sprintf('MOD_GANTRY5_PARTICLE_NOT_INITIALIZED', JText::_('MOD_GANTRY5_PARTICLE')), 'warning' ); return; } include_once dirname(__FILE__) . '/helper.php'; /** @var object $params */ $gantry = \Gantry\Framework\Gantry::instance(); GANTRY_DEBUGGER && \Gantry\Debugger::startTimer("module-{$module->id}", "Rendering Particle Module #{$module->id}"); // Set up caching. $cacheid = md5($module->id); $cacheparams = (object) [ 'cachemode' => 'id', 'class' => 'ModGantry5ParticleHelper', 'method' => 'cache', 'methodparams' => [$module, $params], 'modeparams' => $cacheid ]; $block = ModGantry5ParticleHelper::moduleCache($module, $params, $cacheparams); if (!$block) { $block = ModGantry5ParticleHelper::render($module, $params); } /** @var \Gantry\Framework\Document $document */ $document = $gantry['document']; $document->addBlock($block); echo $block->toString(); GANTRY_DEBUGGER && \Gantry\Debugger::stopTimer("module-{$module->id}");
/var/www/html/Joomla/b2748/../modules/mod_gantry5_particle/mod_gantry5_particle.php