X7ROOT File Manager
Current Path:
/home/notabjze/gameovermg.com/administrator/components/com_fields/tmpl/group
home
/
notabjze
/
gameovermg.com
/
administrator
/
components
/
com_fields
/
tmpl
/
group
/
ðŸ“
..
📄
edit.php
(2.98 KB)
Editing: edit.php
<?php /** * @package Joomla.Administrator * @subpackage com_fields * * @copyright (C) 2016 Open Source Matters, Inc. <https://www.joomla.org> * @license GNU General Public License version 2 or later; see LICENSE.txt */ defined('_JEXEC') or die; use Joomla\CMS\Factory; use Joomla\CMS\HTML\HTMLHelper; use Joomla\CMS\Language\Text; use Joomla\CMS\Layout\LayoutHelper; use Joomla\CMS\Router\Route; HTMLHelper::_('behavior.formvalidator'); HTMLHelper::_('behavior.keepalive'); $app = Factory::getApplication(); $input = $app->input; $this->useCoreUI = true; ?> <form action="<?php echo Route::_('index.php?option=com_fields&context=' . $this->state->get('filter.context') . '&layout=edit&id=' . (int) $this->item->id); ?>" method="post" name="adminForm" id="item-form" aria-label="<?php echo Text::_('COM_FIELDS_GROUP_FORM_' . ((int) $this->item->id === 0 ? 'NEW' : 'EDIT'), true); ?>" class="form-validate"> <?php echo LayoutHelper::render('joomla.edit.title_alias', $this); ?> <div class="main-card form-horizontal"> <?php echo HTMLHelper::_('uitab.startTabSet', 'myTab', ['active' => 'general', 'recall' => true, 'breakpoint' => 768]); ?> <?php echo HTMLHelper::_('uitab.addTab', 'myTab', 'general', Text::_('COM_FIELDS_VIEW_FIELD_FIELDSET_GENERAL', true)); ?> <div class="row"> <div class="col-lg-9"> <?php echo $this->form->renderField('label'); ?> <?php echo $this->form->renderField('description'); ?> </div> <div class="col-lg-3"> <?php $this->set('fields', array( array( 'published', 'state', 'enabled', ), 'access', 'language', 'note', ) ); ?> <?php echo LayoutHelper::render('joomla.edit.global', $this); ?> <?php $this->set('fields', null); ?> </div> </div> <?php echo HTMLHelper::_('uitab.endTab'); ?> <?php echo HTMLHelper::_('uitab.addTab', 'myTab', 'publishing', Text::_('JGLOBAL_FIELDSET_PUBLISHING', true)); ?> <fieldset id="fieldset-rules" class="options-form"> <legend><?php echo Text::_('JGLOBAL_FIELDSET_PUBLISHING'); ?></legend> <div> <?php echo LayoutHelper::render('joomla.edit.publishingdata', $this); ?> </div> </fieldset> <?php echo HTMLHelper::_('uitab.endTab'); ?> <?php $this->set('ignore_fieldsets', array('fieldparams')); ?> <?php echo LayoutHelper::render('joomla.edit.params', $this); ?> <?php if ($this->canDo->get('core.admin')) : ?> <?php echo HTMLHelper::_('uitab.addTab', 'myTab', 'rules', Text::_('JGLOBAL_ACTION_PERMISSIONS_LABEL', true)); ?> <fieldset id="fieldset-rules" class="options-form"> <legend><?php echo Text::_('JGLOBAL_ACTION_PERMISSIONS_LABEL'); ?></legend> <div> <?php echo $this->form->getInput('rules'); ?> </div> </fieldset> <?php echo HTMLHelper::_('uitab.endTab'); ?> <?php endif; ?> <?php echo HTMLHelper::_('uitab.endTabSet'); ?> <?php echo $this->form->getInput('context'); ?> <input type="hidden" name="task" value=""> <?php echo HTMLHelper::_('form.token'); ?> </div> </form>
Upload File
Create Folder