2018-12-27 20:06:03 +01:00
|
|
|
<?php echo template::formOpen('themeManageForm'); ?>
|
|
|
|
<div class="row">
|
|
|
|
<div class="col2">
|
|
|
|
<?php echo template::button('themeManageBack', [
|
|
|
|
'class' => 'buttonGrey',
|
|
|
|
'href' => helper::baseUrl() . 'theme',
|
|
|
|
'ico' => 'left',
|
|
|
|
'value' => 'Retour'
|
|
|
|
]); ?>
|
|
|
|
</div>
|
2018-12-27 12:45:00 +01:00
|
|
|
</div>
|
2018-12-25 16:24:20 +01:00
|
|
|
<div class="row">
|
2018-12-27 12:45:00 +01:00
|
|
|
<div class="col6">
|
|
|
|
<div class="block">
|
2019-12-10 14:26:16 +01:00
|
|
|
<h4>Appliquer un thème archivé</h4>
|
|
|
|
<div class="col10 offset1">
|
2018-12-27 20:06:03 +01:00
|
|
|
<?php echo template::file('themeManageImport', [
|
2019-12-10 14:26:16 +01:00
|
|
|
'label' => 'Archive ZIP :',
|
|
|
|
'type' => 2
|
2018-12-27 20:06:03 +01:00
|
|
|
]); ?>
|
2019-12-10 14:26:16 +01:00
|
|
|
</div>
|
|
|
|
<div class="col5 offset3">
|
|
|
|
<?php echo template::submit('themeImportSubmit', [
|
|
|
|
'value' => 'Appliquer'
|
|
|
|
]); ?>
|
|
|
|
</div>
|
2018-12-27 12:45:00 +01:00
|
|
|
</div>
|
2018-12-25 16:24:20 +01:00
|
|
|
</div>
|
2018-12-27 12:45:00 +01:00
|
|
|
<div class="col6">
|
|
|
|
<div class="block">
|
2019-12-10 14:26:16 +01:00
|
|
|
<h4>Sauvegarder le thème</h4>
|
2018-12-28 16:52:58 +01:00
|
|
|
<div class="row">
|
2019-12-10 14:26:16 +01:00
|
|
|
<div class="col8 offset2">
|
|
|
|
<?php echo template::button('themeSave', [
|
|
|
|
'href' => helper::baseUrl() . 'theme/save',
|
|
|
|
'ico' => 'upload-cloud',
|
|
|
|
'value' => 'Sauvegarder dans les fichiers'
|
|
|
|
]); ?>
|
2018-12-28 16:52:58 +01:00
|
|
|
</div>
|
2019-12-10 14:26:16 +01:00
|
|
|
</div>
|
|
|
|
<div class="row">
|
|
|
|
<div class="col8 offset2">
|
2018-12-27 12:45:00 +01:00
|
|
|
<?php echo template::button('themeExport', [
|
|
|
|
'href' => helper::baseUrl() . 'theme/export',
|
2019-01-24 09:33:44 +01:00
|
|
|
'ico' => 'download',
|
2019-01-17 17:48:58 +01:00
|
|
|
'value' => 'Télécharger'
|
2018-12-27 12:45:00 +01:00
|
|
|
]); ?>
|
2019-12-10 14:26:16 +01:00
|
|
|
</div>
|
2018-12-27 12:45:00 +01:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2018-12-27 20:06:03 +01:00
|
|
|
<?php echo template::formClose(); ?>
|