summaryrefslogtreecommitdiffstats
path: root/application/views/scripts/show/tree.phtml
blob: 52e4f807d8168d52d19bc06ccebc6861882bbe89 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?php
/** @var \Icinga\Module\Toplevelview\ViewConfig $view */
/** @var \Icinga\Module\Toplevelview\Tree\TLVTreeNode $node */

$tree = $view->getTree();

if (! $this->compact):
?>
<div class="controls">
    <?= $this->tabs ?>
</div>
<?php endif ?>
<div class="content tlv-view-tree">
    <div class="tlv-header">
        <?= $this->badges($tree->getStatus(), false, true) ?>
        <h1><?= $view->getMeta('name') ?></h1>
        <?= $this->partial('show/actions.phtml', $this) ?>
        <div class="last-refresh"><?= $this->timeAgo($tree->getFetchTime()) ?></div>
    </div>
    <?= $this->breadcrumb($node->getBreadCrumb(), $view->getName()) ?>
    <?= $this->tree($node) ?>
</div>