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

57 lines
1.8 KiB
PHP
Raw Normal View History

2020-11-16 18:39:32 +01:00
<?php echo template::formOpen('blogConfig'); ?>
<div class="row">
<div class="col2">
<?php echo template::button('blogConfigBack', [
'class' => 'buttonGrey',
2020-11-17 08:52:32 +01:00
'href' => helper::baseUrl() . 'page/edit/' . $this->getUrl(0), 'posts',
2020-11-16 18:39:32 +01:00
'ico' => 'left',
'value' => 'Retour'
]); ?>
</div>
<div class="col3 offset3">
<?php echo template::button('blogConfigComment', [
'href' => helper::baseUrl() . $this->getUrl(0) . '/comment',
'value' => 'Gérer les commentaires'
]); ?>
</div>
<div class="col2">
<?php echo template::button('blogConfigAdd', [
'href' => helper::baseUrl() . $this->getUrl(0) . '/add',
'ico' => 'plus',
'value' => 'Article'
]); ?>
</div>
<div class="col2">
<?php echo template::submit('blogConfigSubmit'); ?>
</div>
2018-04-02 08:29:19 +02:00
</div>
2020-11-16 18:39:32 +01:00
<div class="row">
<div class="col12">
<div class="block">
<h4>Paramètres du module</h4>
<div class="row">
<div class="col6">
2020-11-17 08:52:32 +01:00
<?php echo template::checkbox('blogConfigShowFeeds', true, 'Lien du flux RSS', [
2020-11-16 18:39:32 +01:00
'checked' => $this->getData(['module', $this->getUrl(0), 'config', 'feeds']),
]); ?>
</div>
<div class="col6">
<?php echo template::text('blogConfigFeedslabel', [
2020-11-17 08:52:32 +01:00
'label' => 'Texte de l\'étiquette',
'value' => $this->getData(['module', $this->getUrl(0), 'config', 'feedsLabel'])
2020-11-16 18:39:32 +01:00
]); ?>
</div>
</div>
</div>
</div>
2018-04-02 08:29:19 +02:00
</div>
2020-11-16 18:39:32 +01:00
<?php if($module::$articles): ?>
<?php echo template::table([4, 4, 2, 1, 1], $module::$articles, ['Titre', 'Date de publication', 'État', '', '']); ?>
<?php echo $module::$pages; ?>
<?php else: ?>
<?php echo template::speech('Aucun article.'); ?>
<?php endif; ?>
<?php echo template::formClose(); ?>
<div class="moduleVersion">Version
<?php echo $module::BLOG_VERSION; ?>
</div>