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

21 lines
718 B
PHP
Raw Normal View History

2021-06-05 16:40:16 +02:00
<div class="row">
2022-01-20 13:28:33 +01:00
<div class="col1">
2021-06-05 16:40:16 +02:00
<?php echo template::button('configStoreBack', [
'class' => 'buttonGrey',
2022-01-26 11:40:48 +01:00
'href' => helper::baseUrl() . 'plugin',
2022-01-20 13:28:33 +01:00
'value' => template::ico('left')
2021-06-05 16:40:16 +02:00
]); ?>
</div>
2022-02-01 16:56:02 +01:00
<div class="col1 offset10">
<?php echo template::button('configStoreUpload', [
'href' => helper::baseUrl() . 'plugin/upload',
'value' => template::ico('plus'),
"help" => 'Importer depuis une archive ZIP'
]); ?>
</div>
2021-06-05 16:40:16 +02:00
</div>
<?php if($module::$storeList): ?>
2022-01-21 10:58:13 +01:00
<?php echo template::table([2, 2, 1, 2, 2, 2, 1], $module::$storeList, ['Catégorie', 'Module', 'Version', 'Date', 'Pages', 'Obtenir']); ?>
2021-06-05 16:40:16 +02:00
<?php else: ?>
<?php echo template::speech('Le catalogue est vide.'); ?>
<?php endif; ?>