mirror of
https://github.com/Karaka-Management/oms-Messages.git
synced 2026-01-11 16:48:40 +00:00
82 lines
2.5 KiB
PHP
82 lines
2.5 KiB
PHP
<?php
|
|
/**
|
|
* Jingga
|
|
*
|
|
* PHP Version 8.2
|
|
*
|
|
* @package Modules\Messages
|
|
* @copyright Dennis Eichhorn
|
|
* @license OMS License 2.2
|
|
* @version 1.0.0
|
|
* @link https://jingga.app
|
|
*/
|
|
declare(strict_types=1);
|
|
|
|
use phpOMS\Localization\ISO639Enum;
|
|
use phpOMS\Utils\Formatter\HtmlFormatter;
|
|
|
|
$mail = $this->data['template'];
|
|
|
|
echo $this->data['nav']->render(); ?>
|
|
|
|
<div class="tabview tab-2 right">
|
|
<div class="box">
|
|
<ul class="tab-links">
|
|
<?php
|
|
$c = 0;
|
|
foreach ($mail->l11n as $idx => $l11n) :
|
|
++$c;
|
|
?>
|
|
<li<?= $c === 1 ? ' class="active"' : ''; ?>><label for="c-tab-<?= $idx; ?>"><?= $this->printHtml(ISO639Enum::getBy2Code($l11n->language)); ?></label>
|
|
<?php endforeach; ?>
|
|
</ul>
|
|
</div>
|
|
<div class="tab-content">
|
|
<?php foreach ($mail->l11n as $idx => $l11n) : ?>
|
|
<input type="radio" id="c-tab-<?= $idx; ?>" name="tabular-1"<?= $l11n->language === $this->response->header->l11n->language ? ' checked' : ''; ?>>
|
|
<div class="tab">
|
|
<div class="row">
|
|
<div class="col-xs-12">
|
|
<section class="portlet">
|
|
<div class="portlet-body">
|
|
<input type="text" value="<?= $this->printHtml($l11n->subject); ?>">
|
|
</div>
|
|
</section>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="row">
|
|
<div class="col-xs-12">
|
|
<section class="portlet">
|
|
<div class="portlet-body">
|
|
<pre><?= $this->printHtml(HtmlFormatter::format($l11n->body)); ?></pre>
|
|
</div>
|
|
</section>
|
|
</div>
|
|
</div>
|
|
|
|
<!--
|
|
<div class="row">
|
|
<div class="col-xs-12">
|
|
<section class="portlet">
|
|
<div class="portlet-body">
|
|
<?= $l11n->body; ?>
|
|
</div>
|
|
</section>
|
|
</div>
|
|
</div>
|
|
-->
|
|
|
|
<div class="row">
|
|
<div class="col-xs-12">
|
|
<section class="portlet">
|
|
<div class="portlet-body">
|
|
<pre><?= $l11n->bodyAlt; ?></pre>
|
|
</div>
|
|
</section>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<?php endforeach; ?>
|
|
</div>
|
|
</div>
|