File: cube-index.phtml

package info (click to toggle)
icingaweb2-module-cube 1.3.3-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,032 kB
  • sloc: php: 2,775; sh: 54; makefile: 15
file content (22 lines) | stat: -rw-r--r-- 811 bytes parent folder | download | duplicates (2)
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>