uawdijnntqw1x1x1
IP : 216.73.216.231
Hostname : 213-108-241-110.cprapid.com
Kernel : Linux 213-108-241-110.cprapid.com 5.14.0-570.25.1.el9_6.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Jul 9 04:57:09 EDT 2025 x86_64
Disable Function : None :)
OS : Linux
PATH:
/
home
/
digilove
/
public_html
/
f7525
/
..
/
vmfiles
/
..
/
plugins
/
.
/
system
/
jch_optimize
/
ajax.php
/
/
<?php /** * JCH Optimize - Joomla! plugin to aggregate and minify external resources for * optmized downloads * @author Samuel Marshall <sdmarshall73@gmail.com> * @copyright Copyright (c) 2010 Samuel Marshall * @license GNU/GPLv3, See LICENSE file * 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 3 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. * * If LICENSE file missing, see <http://www.gnu.org/licenses/>. */ require_once dirname(__FILE__) . '/bootstrap.php'; $app = JFactory::getApplication('site'); $action = $app->input->get('action', '', 'string'); $format = strtolower($app->input->getWord('format')); if(!$action) { exit(); } jimport('joomla.event.dispatcher'); $plugin = JPluginHelper::getPlugin('system', 'jch_optimize'); if(!$plugin) { exit(); } JPluginHelper::importPlugin('system', $plugin->name); $dispatcher = JDispatcher::getInstance(); try { $results = $dispatcher->trigger('onAjax' . ucfirst($action)); } catch (Exception $e) { $results = $e; } if (is_scalar($results)) { $out = (string) $results; } else { $out = implode((array) $results); } echo $out;
/home/digilove/public_html/f7525/../vmfiles/../plugins/./system/jch_optimize/ajax.php