Linux anchor 4.4.0-210-generic #242-Ubuntu SMP Fri Apr 16 09:57:56 UTC 2021 x86_64
Apache/2.4.18 (Ubuntu)
Server IP : 10.10.100.4 & Your IP : 216.73.217.150
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
www /
lusedi /
layouts /
joomla /
edit /
Delete
Unzip
Name
Size
Permission
Date
Action
associations.php
927
B
-rw-r--r--
2017-11-07 06:31
details.php
1.92
KB
-rw-r--r--
2017-11-07 06:31
fieldset.php
1.16
KB
-rw-r--r--
2017-11-07 06:31
frontediting_modules.php
2.57
KB
-rw-r--r--
2017-11-07 06:31
global.php
1.37
KB
-rw-r--r--
2017-11-07 06:31
item_title.php
537
B
-rw-r--r--
2017-11-07 06:31
metadata.php
1.04
KB
-rw-r--r--
2017-11-07 06:31
params.php
3.42
KB
-rw-r--r--
2017-11-07 06:31
publishingdata.php
935
B
-rw-r--r--
2017-11-07 06:31
title_alias.php
539
B
-rw-r--r--
2017-11-07 06:31
Save
Rename
<?php /** * @package Joomla.Site * @subpackage Layout * * @copyright Copyright (C) 2005 - 2017 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt */ defined('JPATH_BASE') 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); }