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;
|
|
|
|
|
|
|
|
$wa = $this->document->getWebAssetManager();
|
|
|
|
|
|
|
|
$wa->useScript('keepalive');
|
|
|
|
$wa->useScript('form.validate');
|
|
|
|
?>
|
|
|
|
<form action="<?= Route::_('index.php?option=com_depot&layout=edit&id=' . (int) $this->item->id); ?>"
|
|
|
|
method="post" name="adminForm" id="item-form" class="form-validate">
|
|
|
|
|
2023-10-05 03:06:49 +02:00
|
|
|
<?= $this->form->renderField('component_name'); ?>
|
2023-10-05 02:28:17 +02:00
|
|
|
|
|
|
|
<input type="hidden" name="task" value="part.edit" />
|
|
|
|
<?= HTMLHelper::_('form.token'); ?>
|
|
|
|
</form>
|