One Hat Cyber Team
Your IP:
216.73.216.75
Server IP:
213.186.33.17
Server:
Linux webm007.cluster106.gra.hosting.ovh.net 6.18.39-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Tue Jul 21 12:03:15 CEST 2026 x86_64
Server Software:
Apache
PHP Version:
7.4.33
Create File
|
Create Folder
Execute
Dir :
~
/
home
/
tcherkas
/
balalaika.eu
/
modules
/
mod_imageshow
/
View File Name :
mod_imageshow.php
<?php /** * @author JoomlaShine.com Team * @copyright JoomlaShine.com * @link joomlashine.com * @package JSN ImageShow * @version $Id: mod_imageshow.php 6505 2011-05-31 11:01:31Z trungnq $ * @license GNU/GPL v2 http://www.gnu.org/licenses/gpl-2.0.html */ defined('_JEXEC') or die( 'Restricted access' ); jimport('joomla.filesystem.file'); if (!defined('DS')) { define('DS', DIRECTORY_SEPARATOR); } require_once (dirname(__FILE__).DS.'helper.php'); $fileFactory = JPATH_ROOT . DS. 'administrator'.DS.'components'.DS.'com_imageshow'.DS.'classes'.DS.'jsn_is_factory.php'; if (JFile::exists($fileFactory)) { require_once $fileFactory; require(JModuleHelper::getLayoutPath('mod_imageshow')); } else { $objModImageShowHelper = new modImageShowHelper(); $objModImageShowHelper->approveModule('mod_imageshow', 0); }