Fred Tempez
8cac9eae8b
- ajout du module pour les tests mise aux - normes php 8.2 et - ajout des contrôles de profil. Setup devient option
30 lines
1.0 KiB
PHP
30 lines
1.0 KiB
PHP
<?php echo template::formOpen('categoryEditForm'); ?>
|
|
<div class="row">
|
|
<div class="col1">
|
|
<?php echo template::button('categoryEditBack', [
|
|
'class' => 'buttonGrey',
|
|
'href' => helper::baseUrl() . $this->getUrl(0) . '/categories',
|
|
'value' => template::ico('left')
|
|
]); ?>
|
|
</div>
|
|
<div class="col2 offset9">
|
|
<?php echo template::submit('categoryEditSubmit', [
|
|
'value' => 'Valider'
|
|
]); ?>
|
|
</div>
|
|
<div class="row">
|
|
<div class="col12">
|
|
<div class="block">
|
|
<h4>Éditer la catégorie</h4>
|
|
<div class="row">
|
|
<div class="col12">
|
|
<?php echo template::text('categoryEditTitle', [
|
|
'label' => 'Nom',
|
|
'value' => $this->getData(['module', $this->getUrl(0), 'categories', $this->getUrl(2)])
|
|
]); ?>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<?php echo template::formClose(); ?>
|