芝麻web文件管理V1.00
编辑当前文件:/home2/sdektunc/.trash/components.5/com_config/tmpl/templates/default_options.php
* @license GNU General Public License version 2 or later; see LICENSE.txt */ defined('_JEXEC') or die; use Joomla\CMS\Language\Text; $fieldSets = $this->form->getFieldsets('params'); ?>
form->renderFieldset('com_config'); } else { // Fall-back to display all in params foreach ($fieldSets as $name => $fieldSet) { $label = !empty($fieldSet->label) ? $fieldSet->label : 'COM_CONFIG_' . $name . '_FIELDSET_LABEL'; if (isset($fieldSet->description) && trim($fieldSet->description)) { echo '
' . $this->escape(Text::_($fieldSet->description)) . '
'; } echo $this->form->renderFieldset($name); } }