Deltacms/core/module/addon/view/import/import.php

36 lines
1.2 KiB
PHP
Raw Normal View History

2022-03-06 13:35:21 +01:00
<?php
// Lexique
2022-09-11 09:42:42 +02:00
include('./core/module/addon/lang/'. $this->getData(['config', 'i18n', 'langAdmin']) . '/lex_addon.php');
echo template::formOpen('addonImportForm'); ?>
2022-01-31 09:10:49 +01:00
<div class="row">
<div class="col2">
<?php echo template::button('addonImportBack', [
'class' => 'buttonGrey',
'href' => helper::baseUrl() . 'addon',
'ico' => 'left',
2022-09-11 09:42:42 +02:00
'value' => $text['core_addon_view']['import'][0]
2022-01-31 09:10:49 +01:00
]); ?>
</div>
<div class="col2 offset8">
<?php echo template::submit('addonImportSubmit', [
2022-09-11 09:42:42 +02:00
'value' => $text['core_addon_view']['import'][1]
2022-01-31 09:10:49 +01:00
]); ?>
</div>
</div>
<div class="row">
<div class="col12">
<div class="block">
2022-12-04 08:19:08 +01:00
<div class="blockTitle"><?php echo $text['core_addon_view']['import'][3]; ?></div>
2022-01-31 09:10:49 +01:00
<div class="row">
<div class="col6 offset3">
<?php echo template::file('addonImportFile', [
2022-09-11 09:42:42 +02:00
'label' => $text['core_addon_view']['import'][2],
2022-01-31 09:10:49 +01:00
'type' => 2
]); ?>
</div>
</div>
</div>
</div>
2022-12-04 08:19:08 +01:00
</div>