| Current Path : /home/jlgagfroyt/www/plugins/editors-xtd/modals/ |
| Current File : /home/jlgagfroyt/www/plugins/editors-xtd/modals/popup.php |
<?php
/**
* @package Modals
* @version 11.11.1
*
* @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
*/
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\EditorButtonPopup as RL_EditorButtonPopup;
use RegularLabs\Library\RegEx as RL_RegEx;
class Popup extends RL_EditorButtonPopup
{
var $require_core_auth = false;
public function loadScripts()
{
// Tag character start and end
[$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.11.1');
}
public function loadStyles()
{
RL_Document::style('modals/popup.min.css', '11.11.1');
}
}
(new Popup('modals'))->render();