diff options
Diffstat (limited to 'application/views/scripts/show')
-rw-r--r-- | application/views/scripts/show/actions.phtml | 43 | ||||
-rw-r--r-- | application/views/scripts/show/index.phtml | 23 | ||||
-rw-r--r-- | application/views/scripts/show/tree.phtml | 22 |
3 files changed, 88 insertions, 0 deletions
diff --git a/application/views/scripts/show/actions.phtml b/application/views/scripts/show/actions.phtml new file mode 100644 index 0000000..c72d5a6 --- /dev/null +++ b/application/views/scripts/show/actions.phtml @@ -0,0 +1,43 @@ +<?php +/** @var \Icinga\Module\Toplevelview\ViewConfig $view */ +?> +<div class="action-links"> + <?php + if (! $this->compact) { + if ($this->hasPermission('toplevelview/edit')) { + echo $this->qlink( + $this->translate('Edit'), + 'toplevelview/edit', + array('name' => $view->getName()), + array( + 'class' => 'action-link', + 'icon' => 'edit', + 'data-base-target' => '_next' + ) + ); + echo $this->qlink( + $this->translate('Clone'), + 'toplevelview/edit/clone', + array('name' => $view->getName()), + array( + 'class' => 'action-link', + 'icon' => 'rewind', + 'data-base-target' => '_next' + ) + ); + } else { + echo $this->qlink( + $this->translate('Source'), + 'toplevelview/show/source', + array('name' => $view->getName()) + ); + } + } + ?> + <?php if ($view->hasBeenLoadedFromSession()): ?> + <div class="warning-note"> + <?= $this->translate('This config is only stored in your session!' + . ' Make sure to save it to disk once your work is complete!') ?> + </div> + <?php endif; ?> +</div> diff --git a/application/views/scripts/show/index.phtml b/application/views/scripts/show/index.phtml new file mode 100644 index 0000000..8278ae4 --- /dev/null +++ b/application/views/scripts/show/index.phtml @@ -0,0 +1,23 @@ +<?php +/** @var \Icinga\Web\View $this */ +/** @var \Icinga\Module\Toplevelview\ViewConfig $view */ +$tree = $view->getTree(); +if (! $this->compact): +?> +<div class="controls"> + <?= $this->tabs ?> +</div> +<?php endif ?> +<div class="content tlv-content"> + <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> + <div class="tlv-view-tiles"> + <?php foreach ($tree->getChildren() as $topTile): ?> + <?= $this->tiles($topTile) ?> + <?php endforeach; ?> + </div> +</div> diff --git a/application/views/scripts/show/tree.phtml b/application/views/scripts/show/tree.phtml new file mode 100644 index 0000000..52e4f80 --- /dev/null +++ b/application/views/scripts/show/tree.phtml @@ -0,0 +1,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> |