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(); $fields = $displayData->get('fields') ?: array( 'publish_up', 'publish_down', array('created', 'created_time'), array('created_by', 'created_user_id'), 'created_by_alias', array('modified', 'modified_time'), array('modified_by', 'modified_user_id'), 'version', 'hits', 'id' ); $hiddenFields = $displayData->get('hidden_fields') ?: array(); foreach ($fields as $field) { foreach ((array) $field as $f) { if ($form->getField($f)) { if (in_array($f, $hiddenFields)) { $form->setFieldAttribute($f, 'type', 'hidden'); } echo $form->renderField($f); break; } } }