Linux mail.vriendennsm.nl 6.1.0-51-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.177-1 (2026-07-16) x86_64
Apache/2.4.68 (Debian)
Server IP : 217.154.75.17 & Your IP : 216.73.217.65
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
www /
vnsm /
modules /
mod_joomcat /
Delete
Unzip
Name
Size
Permission
Date
Action
tmpl
[ DIR ]
drwxr-xr-x
2025-02-08 22:29
LICENSE.TXT
17.56
KB
-rwxr-xr-x
2018-10-18 13:04
changelog.php
4.76
KB
-rwxr-xr-x
2018-10-18 13:04
helper.php
35.36
KB
-rwxr-xr-x
2018-10-18 13:04
index.html
44
B
-rwxr-xr-x
2018-10-18 13:04
mod_joomcat.php
1.9
KB
-rwxr-xr-x
2018-10-18 13:04
mod_joomcat.xml
16.98
KB
-rwxr-xr-x
2018-10-18 13:04
Save
Rename
<?php // $HeadURL: https://joomgallery.org/svn/joomgallery/JG-3/Modules/JoomCategories/trunk/mod_joomcat.php $ // $Id: mod_joomcat.php 4314 2013-07-20 09:53:08Z erftralle $ /** * Module JoomCategories for JoomGallery * by JoomGallery::Project Team * @package JoomGallery * @copyright JoomGallery::Project Team * @license http://www.gnu.org/copyleft/gpl.html GNU/GPL * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License as published by the Free Software * Foundation, either version 2 of the License, or (at your option) any later * version. * * This program is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY, without even the implied warranty of MERCHANTABILITY or FITNESS * FOR A PARTICULAR PURPOSE. * See the GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along with * this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin St, Fifth Floor, Boston, MA 02110, USA */ // No direct access defined('_JEXEC') or die('Restricted access'); $jg_installed = null; $jg_ifpath = JPATH_ROOT.'/components/com_joomgallery/interface.php'; $jg_minversion = '3.0'; if(file_exists($jg_ifpath)) { // Include JoomGallery's interface class require_once $jg_ifpath; // Include the helper functions only once require_once dirname(__FILE__).'/helper.php'; // Create an instance of the helper object $jc_obj = new modJoomCatHelper(); // Check gallery version if(version_compare($jc_obj->getGalleryVersion(), $jg_minversion, '>=')) { // Correct version of JoomGallery seems to be installed $jg_installed = true; // Get the categories from JoomGallery $cat_rows = $jc_obj->getCats($params, $dberror, $module->id); } } // Show the categories require JModuleHelper::getLayoutPath('mod_joomcat', $params->get('layout', 'default'));