uawdijnntqw1x1x1
IP : 216.73.216.168
Hostname : server.fattispazio.it
Kernel : Linux server.fattispazio.it 3.10.0-1160.144.1.el7.tuxcare.els4.x86_64 #1 SMP Tue Apr 7 08:40:40 UTC 2026 x86_64
Disable Function : None :)
OS : Linux
PATH:
/
home
/
poliximo
/
public_html
/
plugins
/
system
/
fields
/
..
/
fields
/
..
/
modulesanywhere
/
script.install.php
/
/
<?php /** * @package Modules Anywhere * @version 7.8.1 * * @author Peter van Westen <info@regularlabs.com> * @link http://www.regularlabs.com * @copyright Copyright © 2019 Regular Labs All Rights Reserved * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL */ defined('_JEXEC') or die; use Joomla\CMS\Factory as JFactory; use Joomla\CMS\Language\Text as JText; require_once __DIR__ . '/script.install.helper.php'; class PlgSystemModulesAnywhereInstallerScript extends PlgSystemModulesAnywhereInstallerScriptHelper { public $name = 'MODULES_ANYWHERE'; public $alias = 'modulesanywhere'; public $extension_type = 'plugin'; public function uninstall($adapter) { $this->uninstallPlugin($this->extname, 'editors-xtd'); $this->enableCoreEditorPlugin(); } public function onBeforeInstall($route) { $this->showDivMessage(); } public function onAfterInstall($route) { $this->fixOldParams(); $this->disableCoreEditorPlugin(); } private function fixOldParams() { $query = $this->db->getQuery(true) ->select($this->db->quoteName('extension_id')) ->select($this->db->quoteName('params')) ->from('#__extensions') ->where($this->db->quoteName('element') . ' = ' . $this->db->quote('modulesanywhere')) ->where($this->db->quoteName('type') . ' = ' . $this->db->quote('plugin')) ->where($this->db->quoteName('folder') . ' = ' . $this->db->quote('system')); $this->db->setQuery($query); $plugin = $this->db->loadObject(); if (empty($plugin) || empty($plugin->params)) { return; } $params = json_decode($plugin->params); if (empty($params)) { return; } if (isset($params->handle_core_tags) || ! isset($params->handle_loadposition)) { return; } $params->handle_core_tags = $params->handle_loadposition; unset($params->handle_loadposition); $params = json_encode($params); $query->clear() ->update('#__extensions') ->set($this->db->quoteName('params') . ' = ' . $this->db->quote($params)) ->where($this->db->quoteName('extension_id') . ' = ' . $this->db->quote($plugin->extension_id)); $this->db->setQuery($query); $this->db->execute(); } private function showDivMessage() { $installed_version = $this->getVersion($this->getInstalledXMLFile()); if ($installed_version && version_compare($installed_version, 7, '<')) { JFactory::getApplication()->enqueueMessage( 'Modules Anywhere no longer supports the <code>{div}</code> tags.<br>' . 'If you are using these, you will need to replace them with normal html <code><div></code> tags.<br><br>' . 'If you still need this functionality, you will need to downgrade to Modules Anywhere v6.0.6.' , 'warning' ); } } private function disableCoreEditorPlugin() { $query = $this->getCoreEditorPluginQuery() ->set($this->db->quoteName('enabled') . ' = 0') ->where($this->db->quoteName('enabled') . ' = 1'); $this->db->setQuery($query); $this->db->execute(); if ( ! $this->db->getAffectedRows()) { return; } JFactory::getApplication()->enqueueMessage(JText::_('Joomla\'s own "Module" editor button has been disabled'), 'warning'); } private function enableCoreEditorPlugin() { $query = $this->getCoreEditorPluginQuery() ->set($this->db->quoteName('enabled') . ' = 1') ->where($this->db->quoteName('enabled') . ' = 0'); $this->db->setQuery($query); $this->db->execute(); if ( ! $this->db->getAffectedRows()) { return; } JFactory::getApplication()->enqueueMessage(JText::_('Joomla\'s own "Module" editor button has been re-enabled'), 'warning'); } private function getCoreEditorPluginQuery() { return $this->db->getQuery(true) ->update('#__extensions') ->where($this->db->quoteName('element') . ' = ' . $this->db->quote('module')) ->where($this->db->quoteName('folder') . ' = ' . $this->db->quote('editors-xtd')) ->where($this->db->quoteName('custom_data') . ' NOT LIKE ' . $this->db->quote('%modulesanywhere_ignore%')); } }
/home/poliximo/public_html/plugins/system/fields/../fields/../modulesanywhere/script.install.php