Linux mail.vriendennsm.nl 6.1.0-51-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.177-1 (2026-07-16) x86_64
Apache/2.4.68 (Debian)
Server IP : 217.154.75.17 & Your IP : 216.73.216.195
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
www /
vnsm /
plugins /
editors-xtd /
sourcerer /
Delete
Unzip
Name
Size
Permission
Date
Action
language
[ DIR ]
drwxr-xr-x
2025-02-08 22:29
layouts
[ DIR ]
drwxr-xr-x
2025-02-08 22:29
fields.xml
2.5
KB
-rwxr-xr-x
2023-09-03 18:12
helper.php
805
B
-rwxr-xr-x
2023-09-03 18:12
popup.php
1.83
KB
-rwxr-xr-x
2023-09-03 18:12
popup.tmpl.php
2.3
KB
-rwxr-xr-x
2023-09-03 18:12
script.install.php
750
B
-rwxr-xr-x
2022-08-17 14:02
sourcerer.php
941
B
-rwxr-xr-x
2023-09-03 18:12
sourcerer.xml
1.63
KB
-rwxr-xr-x
2023-09-03 18:12
Save
Rename
<?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();