depot/admin/tmpl/part/edit.php

54 lines
1.5 KiB
PHP
Raw Permalink Normal View History

2023-10-05 02:28:17 +02:00
<?php
/**
* @package Depot.Administrator
* @subpackage com_depot
* @author Thomas Kuschel <thomas@kuschel.at>
* @copyright (C) 2023 KW4NZ, <https://www.kuschel.at>
* @license GNU General Public License version 2 or later; see LICENSE.md
* @since 0.0.3
*/
use Joomla\CMS\HTML\HTMLHelper;
2023-10-14 21:15:09 +02:00
use Joomla\CMS\Language\Text;
2023-10-05 11:45:44 +02:00
use Joomla\CMS\Router\Route;
2023-10-05 02:28:17 +02:00
2023-10-06 04:47:51 +02:00
/** @var Joomla\CMS\WebAsset\WebAssetManager $wa */
$wa = $this->document->getWebAssetManager();
$wa->useScript('form.validate')
->useScript('keepalive');
2023-10-05 02:28:17 +02:00
?>
2023-10-07 23:33:29 +02:00
<form action="<?= Route::_('index.php?option=com_depot&view=part&layout=edit&id=' . (int) $this->item->id); ?>"
2023-10-05 02:28:17 +02:00
method="post" name="adminForm" id="item-form" class="form-validate">
2023-10-14 21:15:09 +02:00
<div class="form-horizontal">
<?= HtmlHelper::_(
'bootstrap.startTabSet',
'myTab',
['active' => 'details']
); ?>
<?= HTMLHelper::_(
'bootstrap.addTab',
'myTab',
'details',
empty($this->item->id) ? Text::_('COM_DEPOT_TAB_NEW_PART') :
Text::_('COM_DEPOT_TAB_EDIT_PART')
); ?>
<fieldset class="adminform">
<legend>
<?= Text::_('COM_DEPOT_LEGEND_DETAILS') ?>
</legend>
<div class="row">
<div class="col-12 col-lg-3">
<?= $this->form->renderFieldset('details'); ?>
</div>
<div class="col-12 col-lg-9">
<?= $this->form->getInput('description'); ?>
</div>
</div>
</fieldset>
<?= HtmlHelper::_('bootstrap.endTab'); ?>
<?= HtmlHelper::_('bootstrap.endTabSet'); ?>
</div>
2023-10-05 02:28:17 +02:00
<input type="hidden" name="task" value="part.edit" />
2023-10-07 23:33:29 +02:00
<?= HTMLHelper::_('form.token'); ?>
2023-10-05 14:56:39 +02:00
</form>