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 /
edit /
Delete
Unzip
Name
Size
Permission
Date
Action
associations.php
910
B
-rwxr-xr-x
2023-07-08 16:23
details.php
1.9
KB
-rwxr-xr-x
2023-07-08 16:23
fieldset.php
1.14
KB
-rwxr-xr-x
2023-07-08 16:23
frontediting_modules.php
2.65
KB
-rwxr-xr-x
2023-07-08 16:23
global.php
1.38
KB
-rwxr-xr-x
2023-07-08 16:23
item_title.php
599
B
-rwxr-xr-x
2023-07-08 16:23
metadata.php
1.02
KB
-rwxr-xr-x
2023-07-08 16:23
params.php
3.32
KB
-rwxr-xr-x
2023-07-08 16:23
publishingdata.php
918
B
-rwxr-xr-x
2023-07-08 16:23
title_alias.php
522
B
-rwxr-xr-x
2023-07-08 16:23
Save
Rename
<?php /** * @package Joomla.Site * @subpackage Layout * * @copyright (C) 2013 Open Source Matters, Inc. <https://www.joomla.org> * @license GNU General Public License version 2 or later; see LICENSE.txt */ defined('_JEXEC') or die; $app = JFactory::getApplication(); $form = $displayData->getForm(); $name = $displayData->get('fieldset'); $fieldSet = $form->getFieldset($name); if (empty($fieldSet)) { return; } $ignoreFields = $displayData->get('ignore_fields') ? : array(); $extraFields = $displayData->get('extra_fields') ? : array(); if (!empty($displayData->showOptions) || $displayData->get('show_options', 1)) { if (isset($extraFields[$name])) { foreach ($extraFields[$name] as $f) { if (in_array($f, $ignoreFields)) { continue; } if ($form->getField($f)) { $fieldSet[] = $form->getField($f); } } } $html = array(); foreach ($fieldSet as $field) { $html[] = $field->renderField(); } echo implode('', $html); } else { $html = array(); $html[] = '<div style="display:none;">'; foreach ($fieldSet as $field) { $html[] = $field->input; } $html[] = '</div>'; echo implode('', $html); }