| Current Path : /proc/self/root/home/antonen/keliauk-uk.lt/plugins/system/modulesanywhere/ |
| Current File : //proc/self/root/home/antonen/keliauk-uk.lt/plugins/system/modulesanywhere/script.install.php |
<?php
/**
* @package Modules Anywhere
* @version 7.4.0
*
* @author Peter van Westen <info@regularlabs.com>
* @link http://www.regularlabs.com
* @copyright Copyright © 2017 Regular Labs All Rights Reserved
* @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL
*/
defined('_JEXEC') or die;
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->disableCoreEditorPlugin();
}
private function showDivMessage()
{
$installed_version = $this->getVersion($this->getInstalledXMLFile());
if (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%'));
}
}