oms-Exchange/tests/Interfaces/OMS/export.tpl.php
2024-03-20 07:21:21 +00:00

31 lines
874 B
PHP
Executable File

<?php
/**
* Jingga
*
* PHP Version 8.2
*
* @package Template
* @copyright Dennis Eichhorn
* @license OMS License 2.0
* @version 1.0.0
* @link https://jingga.app
*/
declare(strict_types=1);
$lang = $this->getData('lang');
?>
<div class="row">
<div class="col-xs-12 col-md-6">
<section class="portlet">
<form id="fImport" method="POST" action="<?= \phpOMS\Uri\UriFactory::build('{/api}admin/exchange/export/view?{?}&id={?id}&type=language&csrf={$CSRF}'); ?>">
<div class="portlet-head"><?= $this->printHtml($lang['Language']); ?> - OMS</div>
<div class="portlet-body">
</div>
<div class="portlet-foot">
<input type="submit" value="<?= $this->getHtml('Export'); ?>">
</div>
</form>
</section>
</div>
</div>