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 /
layouts /
joomla /
toolbar /
Delete
Unzip
Name
Size
Permission
Date
Action
base.php
360
B
-rwxr-xr-x
2023-07-08 16:23
batch.php
769
B
-rwxr-xr-x
2023-07-08 16:23
confirm.php
542
B
-rwxr-xr-x
2023-07-08 16:23
containerclose.php
261
B
-rwxr-xr-x
2023-07-08 16:23
containeropen.php
383
B
-rwxr-xr-x
2023-07-08 16:23
help.php
517
B
-rwxr-xr-x
2023-07-08 16:23
iconclass.php
295
B
-rwxr-xr-x
2023-07-08 16:23
link.php
531
B
-rwxr-xr-x
2023-07-08 16:23
modal.php
1.23
KB
-rwxr-xr-x
2023-07-08 16:23
popup.php
639
B
-rwxr-xr-x
2023-07-08 16:23
separator.php
250
B
-rwxr-xr-x
2023-07-08 16:23
slider.php
691
B
-rwxr-xr-x
2023-07-08 16:23
standard.php
603
B
-rwxr-xr-x
2023-07-08 16:23
title.php
495
B
-rwxr-xr-x
2023-07-08 16:23
versions.php
905
B
-rwxr-xr-x
2023-07-08 16:23
Save
Rename
<?php /** * @package Joomla.Site * @subpackage Layout * * @copyright (C) 2016 Open Source Matters, Inc. <https://www.joomla.org> * @license GNU General Public License version 2 or later; see LICENSE.txt */ defined('_JEXEC') or die; JHtml::_('behavior.core'); /** * Generic toolbar button layout to open a modal * ----------------------------------------------- * @param array $displayData Button parameters. Default supported parameters: * - selector string Unique DOM identifier for the modal. CSS id without # * - class string Button class * - icon string Button icon * - text string Button text */ $selector = $displayData['selector']; $class = isset($displayData['class']) ? $displayData['class'] : 'btn btn-small'; $icon = isset($displayData['icon']) ? $displayData['icon'] : 'out-3'; $text = isset($displayData['text']) ? $displayData['text'] : ''; ?> <button class="<?php echo $class; ?>" data-toggle="modal" data-target="#<?php echo $selector; ?>"> <span class="icon-<?php echo $icon; ?>" aria-hidden="true"></span> <?php echo $text; ?> </button>