uawdijnntqw1x1x1
IP : 216.73.216.231
Hostname : 213-108-241-110.cprapid.com
Kernel : Linux 213-108-241-110.cprapid.com 5.14.0-570.25.1.el9_6.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Jul 9 04:57:09 EDT 2025 x86_64
Disable Function : None :)
OS : Linux
PATH:
/
home
/
digilove
/
public_html
/
plugins
/
fields
/
..
/
system
/
advancedmodules
/
src
/
Document.php
/
/
<?php /** * @package Advanced Module Manager * @version 9.8.0PRO * * @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.8.0.p'); } /** * 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&force=1', ], '?option=com_modules', $string ); } }
/home/digilove/public_html/plugins/fields/../system/advancedmodules/src/Document.php