[ SYSTEM ]: Windows NT SWD-ELEARN-11 10.0 build 20348 (Windows Server 2016) AMD64
[ SERVER ]: Apache/2.4.41 (Win64) OpenSSL/1.1.1c PHP/7.3.9 | PHP: 7.3.9
[ USER ]: Elearn | IP: 10.201.204.156
GEFORCE FILE MANAGER
/
C:
/
xampp
/
htdocs
/
Ajaji
/
backup
/
layouts
/
joomla
/
edit
/
UPLOAD:
NAME
SIZE
QUICK PERMS
ACTIONS
📄 associations.php
910 B
SET
[ EDIT ]
|
[ DEL ]
📄 details.php
1,950 B
SET
[ EDIT ]
|
[ DEL ]
📄 fieldset.php
1,167 B
SET
[ EDIT ]
|
[ DEL ]
📄 frontediting_modules.php
2,710 B
SET
[ EDIT ]
|
[ DEL ]
📄 global.php
1,418 B
SET
[ EDIT ]
|
[ DEL ]
📄 item_title.php
599 B
SET
[ EDIT ]
|
[ DEL ]
📄 metadata.php
1,047 B
SET
[ EDIT ]
|
[ DEL ]
📄 params.php
3,398 B
SET
[ EDIT ]
|
[ DEL ]
📄 publishingdata.php
918 B
SET
[ EDIT ]
|
[ DEL ]
DELETE SELECTED
[ CLOSE ]
EDIT: fieldset.php
<?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); }