diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-13 11:46:43 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-13 11:46:43 +0000 |
commit | 3e02d5aff85babc3ffbfcf52313f2108e313aa23 (patch) | |
tree | b01f3923360c20a6a504aff42d45670c58af3ec5 /application/layouts/scripts/body.phtml | |
parent | Initial commit. (diff) | |
download | icingaweb2-3e02d5aff85babc3ffbfcf52313f2108e313aa23.tar.xz icingaweb2-3e02d5aff85babc3ffbfcf52313f2108e313aa23.zip |
Adding upstream version 2.12.1.upstream/2.12.1upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '')
-rw-r--r-- | application/layouts/scripts/body.phtml | 98 |
1 files changed, 98 insertions, 0 deletions
diff --git a/application/layouts/scripts/body.phtml b/application/layouts/scripts/body.phtml new file mode 100644 index 0000000..87b570b --- /dev/null +++ b/application/layouts/scripts/body.phtml @@ -0,0 +1,98 @@ +<?php + +use Icinga\Web\Url; +use Icinga\Web\Notification; +use Icinga\Authentication\Auth; +use ipl\Html\HtmlString; +use ipl\Web\Widget\Icon; + +$moduleName = $this->layout()->moduleName; +if ($moduleName !== 'default') { + $moduleClass = ' icinga-module module-' . $moduleName; +} else { + $moduleClass = ''; +} + +$refresh = ''; +if ($this->layout()->autorefreshInterval) { + $refresh = ' data-icinga-refresh="' . $this->layout()->autorefreshInterval . '"'; +} + +if ($this->layout()->inlineLayout) { + $inlineLayoutScript = $this->layout()->inlineLayout . '.phtml'; +} else { + $inlineLayoutScript = 'inline.phtml'; +} + +?> +<div id="header"> + <div id="announcements" class="container"> + <?= $this->widget('announcements') ?> + </div> +</div> +<div id="content-wrapper"> +<?php if (! $this->layout()->isIframe): ?> + <div id="sidebar"> + <div id="header-logo-container"> + <?= $this->qlink( + '', + Auth::getInstance()->isAuthenticated() ? 'dashboard' : '', + null, + array( + 'aria-hidden' => 'true', + 'data-base-target' => '_main', + 'id' => 'header-logo' + ) + ); ?> + <div id="mobile-menu-toggle"> + <button type="button"><?= $this->icon('menu') ?><?= $this->icon('cancel') ?></button> + </div> + </div> + <?= $this->render('parts/navigation.phtml'); ?> + </div> +<?php endif ?> + <div id="main" role="main"> + <div id="col1" + class="container<?= $moduleClass ?>" + <?php if ($moduleName): ?> + data-icinga-module="<?= $moduleName ?>" + <?php endif ?> + data-icinga-url="<?= $this->escape(Url::fromRequest()->without('renderLayout')->getAbsoluteUrl()); ?>" + <?= $refresh; ?> + > + <?= $this->render($inlineLayoutScript) ?> + </div> + <div id="col2" class="container"></div> + <div id="col3" class="container"></div> + </div> +</div> +<div id="footer"> + <ul role="alert" id="notifications"><?php + + $notifications = Notification::getInstance(); + if ($notifications->hasMessages()) { + foreach ($notifications->popMessages() as $m) { + switch ($m->type) { + case 'success': + $icon = new HtmlString(new Icon('check-circle')); + break; + case 'error': + $icon = new HtmlString(new Icon('times')); + break; + case 'warning': + $icon = new HtmlString(new Icon('exclamation-triangle')); + break; + case 'info': + $icon = new HtmlString(new Icon('info-circle')); + break; + default: + $icon = ''; + break; + } + + echo '<li class="' . $m->type . '">' . $icon . $this->escape($m->message) . '</li>'; + } + } + ?></ul> + <div id="application-state-summary" class="container" data-icinga-url="<?= $this->url('application-state/summary') ?>" data-last-update="-1" data-icinga-refresh="60"></div> +</div> |