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

37 lines
1.3 KiB
PHP
Raw Normal View History

2022-02-17 15:45:25 +01:00
<?php echo template::formOpen('pluginImportForm'); ?>
<div class="row">
<div class="col1">
<?php echo template::button('pluginImportBack', [
'class' => 'buttonGrey',
'href' => helper::baseUrl() . 'plugin',
2022-09-29 08:45:59 +02:00
'value' => template::ico('left')
2022-02-17 15:45:25 +01:00
]); ?>
</div>
<div class="col2 offset9">
<?php echo template::submit('pluginImportSubmit', [
'value' => 'Appliquer'
]); ?>
</div>
</div>
<div class="row">
<div class="col12">
<div class="block">
2022-10-03 18:37:25 +02:00
<h4><?php echo helper::translate('Installer les données d\'un module'); ?>
2022-09-13 11:27:27 +02:00
</h4>
2022-02-17 15:45:25 +01:00
<div class="row">
<div class="col6">
<?php echo template::file('pluginImportFile', [
'language' => $this->getData(['user', $this->getUser('id'), 'language']),
2022-10-18 11:03:27 +02:00
'label' => 'Archive ZIP',
2022-09-29 08:45:59 +02:00
'type' => 2
2022-02-17 15:45:25 +01:00
]); ?>
</div>
<div class="col6">
<?php echo template::select('pluginImportPage', $module::$pagesList, [
2022-10-18 11:03:27 +02:00
'label' => 'Importer dans' . template::flag('selected', '20px')
2022-09-29 08:45:59 +02:00
]); ?>
2022-02-17 15:45:25 +01:00
</div>
</div>
</div>
</div>
</div>