1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
|
<div class="controls">
<?php if (! $this->compact): ?>
<?php if (! \Icinga\Module\Cube\Cube::isUsingIcingaDb()): ?>
<?= $this->tabs ?>
<?php endif ?>
<h1><?= $this->escape($this->title) ?></h1>
<?php if ($this->form && ! $this->compact): ?>
<?= $this->qlink('Hide settings', $this->url->without('showSettings'), null, ['icon' => 'wrench']) ?>
<?php else: ?>
<?= $this->qlink('Show settings', $this->url->with('showSettings', true), null, ['icon' => 'wrench']) ?>
<?php endif ?>
<?php endif ?>
</div>
<div class="content">
<?php if ($this->form && ! $this->compact): ?>
<?= $this->form ?>
<?php endif ?>
<?php if ($this->cube): ?>
<?= $this->cube->render($this) ?>
<?php endif ?>
</div>
|