Server : LiteSpeed System : Linux server 3.10.0-1160.90.1.el7.x86_64 #1 SMP Thu May 4 15:21:22 UTC 2023 x86_64 User : alsaif ( 1057) PHP Version : 7.4.33 Disable Function : show_source,posix_kill,posix_mkfifo,posix_getpwuid,posix_setpgid,posix_setsid,posix_setuid,posix_setgid,posix_seteuid,posix_setegid,posix_uname Directory : /home/alsaif/domains/alsaif.group/public_html/plugins/system/advancedmodules/ |
<?php
/**
* @package Advanced Module Manager
* @version 9.9.0
*
* @author Peter van Westen <info@regularlabs.com>
* @link https://regularlabs.com
* @copyright Copyright © 2023 Regular Labs All Rights Reserved
* @license GNU General Public License version 2 or later
*/
defined('_JEXEC') or die;
use Joomla\CMS\Factory as JFactory;
use Joomla\CMS\Language\Text as JText;
use RegularLabs\Library\Document as RL_Document;
use RegularLabs\Library\Extension as RL_Extension;
use RegularLabs\Library\Protect as RL_Protect;
use RegularLabs\Library\RegEx as RL_RegEx;
use RegularLabs\Library\SystemPlugin as RL_SystemPlugin;
use RegularLabs\Plugin\System\AdvancedModules\Document;
use RegularLabs\Plugin\System\AdvancedModules\ModuleHelper;
use RegularLabs\Plugin\System\AdvancedModules\Params;
// Do not instantiate plugin on install pages
// to prevent installation/update breaking because of potential breaking changes
$input = JFactory::getApplication()->input;
if (in_array($input->get('option'), ['com_installer', 'com_regularlabsmanager']) && $input->get('action') != '')
{
return;
}
require_once __DIR__ . '/vendor/autoload.php';
if ( ! is_file(JPATH_LIBRARIES . '/regularlabs/autoload.php')
|| ! is_file(JPATH_LIBRARIES . '/regularlabs/src/SystemPlugin.php')
)
{
JFactory::getLanguage()->load('plg_system_advancedmodules', __DIR__);
JFactory::getApplication()->enqueueMessage(
JText::sprintf('AMM_EXTENSION_CAN_NOT_FUNCTION', JText::_('ADVANCEDMODULEMANAGER'))
. ' ' . JText::_('AMM_REGULAR_LABS_LIBRARY_NOT_INSTALLED'),
'error'
);
return;
}
require_once JPATH_LIBRARIES . '/regularlabs/autoload.php';
if ( ! RL_Document::isJoomlaVersion(3, 'ADVANCEDMODULEMANAGER'))
{
RL_Extension::disable('advancedmodules', 'plugin');
RL_Document::adminError(
JText::sprintf('RL_PLUGIN_HAS_BEEN_DISABLED', JText::_('ADVANCEDMODULEMANAGER'))
);
return;
}
if (true)
{
class PlgSystemAdvancedModules extends RL_SystemPlugin
{
public $_title = 'ADVANCEDMODULEMANAGER';
public $_lang_prefix = 'AMM';
public $_page_types = ['html'];
public $_enable_in_admin = true;
public $_jversion = 3;
protected function extraChecks()
{
if ( ! RL_Protect::isComponentInstalled('advancedmodules'))
{
return false;
}
return true;
//return parent::extraChecks();
}
protected function handleOnAfterInitialise()
{
if (Params::get()->initialise_event != 'onAfterRoute')
{
$this->initialise();
}
}
protected function handleOnAfterRoute()
{
if ( ! $this->_is_admin)
{
Document::loadFrontEditScript();
}
if (Params::get()->initialise_event == 'onAfterRoute')
{
$this->initialise();
}
}
private function initialise()
{
if ($this->_is_admin)
{
return;
}
ModuleHelper::registerEvents();
}
protected function changeFinalHtmlOutput(&$html)
{
Document::replaceLinks($html);
return true;
}
}
}