/
home
/
assocoweys
/
acisjf
/
plugins
/
editors-xtd
/
modulesanywhere
/
Upload File
HOME
<?php /** * @package Modules Anywhere * @version 7.15.2 * * @author Peter van Westen <info@regularlabs.com> * @link http://regularlabs.com * @copyright Copyright © 2022 Regular Labs All Rights Reserved * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL */ use RegularLabs\Library\Document as RL_Document; use RegularLabs\Library\EditorButtonPlugin as RL_EditorButtonPlugin; use RegularLabs\Library\Extension as RL_Extension; defined('_JEXEC') or die; if ( ! is_file(JPATH_LIBRARIES . '/regularlabs/autoload.php') || ! is_file(JPATH_LIBRARIES . '/regularlabs/src/EditorButtonPlugin.php') ) { return; } require_once JPATH_LIBRARIES . '/regularlabs/autoload.php'; if ( ! RL_Document::isJoomlaVersion(3)) { RL_Extension::disable('modulesanywhere', 'plugin', 'editors-xtd'); return; } if (true) { class PlgButtonModulesAnywhere extends RL_EditorButtonPlugin { } }