Allegati e modifica moduli da frontend

This commit is contained in:
2025-01-06 19:59:56 +01:00
parent b300cf2d54
commit 1b81b34df9
46 changed files with 1137 additions and 35 deletions

View File

@ -0,0 +1,25 @@
<?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;
$form = $displayData->getForm();
$title = $form->getField('title') ? 'title' : ($form->getField('name') ? 'name' : '');
?>
<div class="row title-alias form-vertical mb-3">
<div class="col-12 col-md-6">
<?php echo $title ? $form->renderField($title) : ''; ?>
</div>
<div class="col-12 col-md-6">
<?php echo $form->renderField('alias'); ?>
</div>
</div>