ZwiiCMS/core/module/plugin/view/store/store.php

14 lines
477 B
PHP
Raw Normal View History

2022-02-17 15:45:25 +01:00
<div class="row">
<div class="col1">
<?php echo template::button('configStoreBack', [
'class' => 'buttonGrey',
'href' => helper::baseUrl() . 'plugin',
'value' => template::ico('left')
]); ?>
</div>
</div>
2022-09-29 08:45:59 +02:00
<?php if ($module::$storeList) : ?>
2022-09-19 19:38:04 +02:00
<?php echo template::table([2, 2, 1, 2, 2, 1], $module::$storeList, ['Catégorie', 'Module', 'Version', 'Date', 'Page', '']); ?>
2022-09-29 08:45:59 +02:00
<?php else : ?>
2022-02-17 15:45:25 +01:00
<?php echo template::speech('Le catalogue est vide.'); ?>
<?php endif; ?>