2024-08-29 07:05:54 +02:00
|
|
|
<?php echo template::formOpen('calendarConfigForm'); ?>
|
2024-08-16 15:57:50 +02:00
|
|
|
<div class="row">
|
|
|
|
<div class="col1">
|
2024-08-29 07:05:54 +02:00
|
|
|
<?php echo template::button('calendarConfigBack', [
|
2024-08-16 15:57:50 +02:00
|
|
|
'class' => 'buttonGrey',
|
|
|
|
'href' => helper::baseUrl() . 'page/edit/' . $this->getUrl(0),
|
|
|
|
'value' => template::ico('left')
|
|
|
|
]); ?>
|
|
|
|
</div>
|
2024-08-29 07:05:54 +02:00
|
|
|
<div class="col1 offset9">
|
|
|
|
<?php echo template::button('calendarTheme', [
|
|
|
|
'href' => helper::baseUrl() . 'page/cssEditor/' . $this->getUrl(0),
|
|
|
|
'value' => template::ico('brush')
|
|
|
|
]); ?>
|
|
|
|
</div>
|
|
|
|
<div class="col1">
|
|
|
|
<?php echo template::button('calendarAdd', [
|
2024-08-29 18:21:31 +02:00
|
|
|
'href' => helper::baseUrl() . $this->getUrl(0) . '/add',
|
2024-08-16 15:57:50 +02:00
|
|
|
'value' => template::ico('plus'),
|
|
|
|
'class' => 'buttonGreen'
|
|
|
|
]); ?>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<?php echo template::formClose(); ?>
|
|
|
|
<div class="row">
|
|
|
|
<div class="col12">
|
2024-08-29 07:05:54 +02:00
|
|
|
<?php if ($module::$calendars): ?>
|
|
|
|
<?php echo template::table([6, 3, 3, 1, 1], $module::$calendars, ['Titre', 'Date', 'Horaire', '', '']); ?>
|
2024-08-16 15:57:50 +02:00
|
|
|
<?php else: ?>
|
|
|
|
<?php echo template::speech('Aucun événement'); ?>
|
|
|
|
<?php endif; ?>
|
|
|
|
</div>
|
|
|
|
<div class="moduleVersion">Version n°
|
|
|
|
<?php echo $module::VERSION; ?>
|
|
|
|
</div>
|
|
|
|
</div>
|