NexusLeads Webshell
NexusLeads


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/src/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : /home/alsaif/domains/alsaif.group/public_html/plugins/system/advancedmodules/src/Document.php
<?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
 */

namespace RegularLabs\Plugin\System\AdvancedModules;

defined('_JEXEC') or die;

use Joomla\CMS\Factory as JFactory;
use Joomla\CMS\HTML\HTMLHelper as JHtml;
use Joomla\CMS\Language\Text as JText;
use Joomla\CMS\Router\Route as JRoute;
use RegularLabs\Library\Document as RL_Document;
use RegularLabs\Library\Language as RL_Language;
use RegularLabs\Library\RegEx as RL_RegEx;

class Document
{
    public static function loadFrontEditScript()
    {
        $user = JFactory::getApplication()->getIdentity() ?: JFactory::getUser();

        if ( ! $user->authorise('core.edit', 'com_menus')
            || ! JFactory::getApplication()->get('frontediting', 1) == 2
        )
        {
            return;
        }

        JHtml::_('jquery.framework');

        RL_Document::script('advancedmodules/frontediting.min.js', '9.9.0');
    }

    /**
     * Replace links to com_modules with com_advancedmodules
     */
    public static function replaceLinks(&$string)
    {
        if (RL_Document::isClient('administrator') && JFactory::getApplication()->input->get('option') == 'com_modules')
        {
            self::replaceLinksInCoreModuleManager();

            return;
        }

        $params = Params::get();

        // Replace in link specifically in frontend
        if (RL_Document::isClient('site') && $params->replace_urls_frontend)
        {
            self::replaceLinksInFrontend($string);
        }

        // Replace remaining links in modules in admin and frontend
        if ( ! RL_Document::isClient('site') || $params->replace_urls_frontend)
        {
            self::replaceLinksModules($string);
        }
    }

    private static function replaceLinksInCoreModuleManager()
    {
        RL_Language::load('com_advancedmodules');

        $body = JFactory::getApplication()->getBody();

        $url = 'index.php?option=com_advancedmodules';

        if (JFactory::getApplication()->input->get('view') == 'module')
        {
            $url .= '&task=module.edit&id=' . (int) JFactory::getApplication()->input->get('id');
        }

        $link = '<a style="float:right;" href="' . JRoute::_($url) . '">' . JText::_('AMM_SWITCH_TO_ADVANCED_MODULE_MANAGER') . '</a><div style="clear:both;"></div>';
        $body = RL_RegEx::replace('(</div>\s*</form>\s*(<\!--.*?-->\s*)*</div>)', $link . '\1', $body);

        JFactory::getApplication()->setBody($body);
    }

    private static function replaceLinksInFrontend(&$string)
    {
        if (strpos($string, 'jmodediturl=') === false)
        {
            return;
        }

        $user   = JFactory::getApplication()->getIdentity() ?: JFactory::getUser();
        $params = Params::get();

        $url = 'index.php?option=com_advancedmodules&view=edit&task=edit';

        if ($user->authorise('core.manage', 'com_modules') && $params->use_admin_from_frontend)
        {
            $url = 'administrator/index.php?option=com_advancedmodules&task=module.edit';
        }

        $frontend_urls = [
            'index.php?option=com_config&controller=config.display.modules',
            'administrator/index.php?option=com_modules&view=module&layout=edit',
        ];

        array_walk($frontend_urls, function (&$value) {
            $value = RL_RegEx::quote($value);
        });

        $string = RL_RegEx::replace(
            '(jmodediturl="[^"]*)(' . implode('|', $frontend_urls) . ')',
            '\1' . $url,
            $string
        );
    }

    private static function replaceLinksModules(&$string)
    {
        if (strpos($string, 'com_modules') === false)
        {
            return;
        }

        $string = RL_RegEx::replace(
            '((["\'])[^\s"\'%]*\?option=com_)(modules(\2|[^a-z-].*?\2))',
            '\1advanced\3',
            $string
        );

        $string = str_replace(
            [
                '?option=com_advancedmodules&force=1',
                '?option=com_advancedmodules&amp;force=1',
            ],
            '?option=com_modules',
            $string
        );
    }
}

NexusLeads