Your IP : 216.73.216.240
<?php
/**
* @package Sourcerer
* @version 9.8.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\EditorButton\Sourcerer\Popup;
defined('_JEXEC') or die;
use Joomla\CMS\Factory as JFactory;
use Joomla\CMS\Uri\Uri as JUri;
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()
{
JFactory::getDocument()->addScript('//code.jquery.com/ui/1.9.2/jquery-ui.js');
// 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 sourcerer_syntax_word = '" . $this->params->syntax_word . "';
var sourcerer_tag_characters = ['" . $tag_start . "', '" . $tag_end . "'];
var sourcerer_editorname = '" . $editor . "';
var sourcerer_root = '" . JUri::root(true) . "';
";
RL_Document::scriptDeclaration($script);
RL_Document::script('sourcerer/script.min.js', '9.8.0');
}
public function loadStyles()
{
JFactory::getDocument()->addStyleSheet('//code.jquery.com/ui/1.9.2/themes/smoothness/jquery-ui.css');
RL_Document::style('sourcerer/popup.min.css', '9.8.0');
}
}
(new Popup('sourcerer'))->render();