ZwiiCMS/module/blog/view/config/config.php

37 lines
1.2 KiB
PHP
Raw Normal View History

2020-11-16 18:39:32 +01:00
<?php echo template::formOpen('blogConfig'); ?>
<div class="row">
2022-01-20 10:50:40 +01:00
<div class="col1">
2020-11-16 18:39:32 +01:00
<?php echo template::button('blogConfigBack', [
'class' => 'buttonGrey',
2020-11-17 08:52:32 +01:00
'href' => helper::baseUrl() . 'page/edit/' . $this->getUrl(0), 'posts',
2022-01-20 10:50:40 +01:00
'value' => template::ico('left')
2020-11-16 18:39:32 +01:00
]); ?>
</div>
2022-01-20 10:50:40 +01:00
<div class="col1 offset9">
2022-01-20 10:25:20 +01:00
<?php echo template::button('blogConfigOption', [
'href' => helper::baseUrl() . $this->getUrl(0) . '/option',
2022-01-21 10:58:13 +01:00
'value' => template::ico('cogs'),
'help' => 'Options de configuration'
2020-11-16 18:39:32 +01:00
]); ?>
2022-01-20 10:25:20 +01:00
2020-11-16 18:39:32 +01:00
</div>
2022-01-20 09:53:40 +01:00
<div class="col1">
2022-01-20 10:25:20 +01:00
<?php echo template::button('blogConfigAdd', [
'href' => helper::baseUrl() . $this->getUrl(0) . '/add',
2022-01-21 10:58:13 +01:00
'value' => template::ico('plus'),
'help' => 'Rédiger un article'
2022-01-17 19:32:06 +01:00
]); ?>
2020-11-16 18:39:32 +01:00
</div>
2018-04-02 08:29:19 +02:00
</div>
2020-11-18 21:45:14 +01:00
<?php echo template::formClose(); ?>
2018-04-02 08:29:19 +02:00
<?php if($module::$articles): ?>
2020-07-16 12:24:52 +02:00
<?php echo template::table([4, 4, 1, 1, 1, 1], $module::$articles, ['Titre', 'Date de publication', 'État', 'Commentaires', '','']); ?>
2018-04-02 08:29:19 +02:00
<?php echo $module::$pages; ?>
<?php else: ?>
<?php echo template::speech('Aucun article.'); ?>
2019-02-14 15:17:03 +01:00
<?php endif; ?>
<div class="moduleVersion">Version
2021-02-09 18:04:24 +01:00
<?php echo $module::VERSION; ?>
2020-07-02 19:48:47 +02:00
</div>
2020-11-18 21:45:14 +01:00