uawdijnntqw1x1x1
IP : 104.23.243.222
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
/
..
/
plugins
/
system
/
..
/
actionlog
/
dbreplacer
/
dbreplacer.php
/
/
<?php /** * @package DB Replacer * @version 7.5.1 * * @author Peter van Westen <info@regularlabs.com> * @link http://regularlabs.com * @copyright Copyright © 2023 Regular Labs All Rights Reserved * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL */ defined('_JEXEC') or die; use RegularLabs\Library\ActionLogPlugin as RL_ActionLogPlugin; use RegularLabs\Library\ArrayHelper as RL_Array; use RegularLabs\Library\Document as RL_Document; use RegularLabs\Library\Extension as RL_Extension; use RegularLabs\Library\Log as RL_Log; if ( ! is_file(JPATH_LIBRARIES . '/regularlabs/autoload.php') || ! is_file(JPATH_LIBRARIES . '/regularlabs/src/ActionLogPlugin.php') ) { return; } require_once JPATH_LIBRARIES . '/regularlabs/autoload.php'; if ( ! RL_Document::isJoomlaVersion(3)) { RL_Extension::disable('dbreplacer', 'plugin', 'actionlog'); return; } if (true) { class PlgActionlogDBReplacer extends RL_ActionLogPlugin { public $name = 'DBREPLACER'; public $alias = 'dbreplacer'; public function onAfterDatabaseReplace($context, $table_name) { if (strpos($context, $this->option) === false) { return; } if ( ! RL_Array::find(['*', 'replacement'], $this->events)) { return; } $languageKey = 'DBR_ACTIONLOGS_REPLACEMENT'; $message = [ 'table_name' => (string) $table_name, 'extension_name' => $this->name, 'extension_link' => 'index.php?option=com_dbreplacer', ]; RL_Log::add($message, $languageKey, $context); } } }
/var/www/html/Joomla/b2748/../plugins/system/../actionlog/dbreplacer/dbreplacer.php