<?php /** * @package Modals * @version 11.7.1 * * @author Peter van Westen <info@regularlabs.com> * @link http://www.regularlabs.com * @copyright Copyright © 2020 Regular Labs All Rights Reserved * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL */ namespace RegularLabs\Plugin\EditorButton\Modals\Popup; defined('_JEXEC') or die; use Joomla\CMS\Factory as JFactory; use RegularLabs\Library\Document as RL_Document; use RegularLabs\Library\RegEx as RL_RegEx; class Popup extends \RegularLabs\Library\EditorButtonPopup { var $require_core_auth = false; public function loadScripts() { // Tag character start and end list($tag_start, $tag_end) = explode('.', $this->params->tag_characters); $editor = JFactory::getApplication()->input->getString('name', 'text'); // Remove any dangerous character to prevent cross site scripting $editor = RL_RegEx::replace('[\'\";\s]', '', $editor); $script = " var modals_tag = '" . RL_RegEx::replace('[^a-z0-9-_]', '', $this->params->tag) . "'; var modals_tag_characters = ['" . $tag_start . "', '" . $tag_end . "']; var modals_editorname = '" . $editor . "'; "; RL_Document::scriptDeclaration($script); RL_Document::script('modals/popup.min.js', '11.7.1'); } public function loadStyles() { RL_Document::style('modals/popup.min.css', '11.7.1'); } } (new Popup('modals'))->render();