mirror of
https://github.com/Karaka-Management/oms-Auditor.git
synced 2026-01-26 04:08:41 +00:00
35 lines
823 B
PHP
35 lines
823 B
PHP
<?php
|
|
/**
|
|
* Orange Management
|
|
*
|
|
* PHP Version 7.4
|
|
*
|
|
* @package Modules\Auditor
|
|
* @copyright Dennis Eichhorn
|
|
* @license OMS License 1.0
|
|
* @version 1.0.0
|
|
* @link https://orange-management.org
|
|
*/
|
|
declare(strict_types=1);
|
|
|
|
/**
|
|
* @var \phpOMS\Views\View $this
|
|
*/
|
|
|
|
echo $this->getData('nav')->render();
|
|
?>
|
|
|
|
<div class="row">
|
|
<div class="col-xs-12">
|
|
<div class="portlet">
|
|
<article>
|
|
<pre><?= \phpOMS\Utils\StringUtils::createDiffMarkup(
|
|
\phpOMS\Views\ViewAbstract::html($this->getData('audit')->getOld() ?? ''),
|
|
\phpOMS\Views\ViewAbstract::html($this->getData('audit')->getNew() ?? ''),
|
|
"\n"
|
|
); ?>
|
|
</pre>
|
|
</article>
|
|
</div>
|
|
</div>
|
|
</div>
|