Fred Tempez
d695123b57
Le module Téléchargement ou Download est comparable au module blog dans sa structure à la différence qu'il offre un catalogue de ressources à télécharger.
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(); ?>
|