mirror of
https://github.com/Icinga/icingaweb2-module-graphite.git
synced 2026-06-08 16:23:22 -04:00
Clean up
This commit is contained in:
parent
f03f583235
commit
fc37c1255c
1 changed files with 0 additions and 29 deletions
|
|
@ -1,29 +0,0 @@
|
|||
<div class="controls">
|
||||
<?= $this->tabs ?>
|
||||
<h1><?= $this->translate('Graphite') ?></h1>
|
||||
<form action="<?= $this->url()->without('disabled') ?>" method="get">
|
||||
<?= $this->translate('Template') ?> <?= $this->formSelect('template', $this->templateName, array('class' => 'autosubmit'), $this->templates) ?>
|
||||
<?= $this->translate('Filter') ?> <?= $this->formSelect('filterColumn', $this->filterColumn, array('class' => 'autosubmit'), $this->filterColumns) ?>
|
||||
<?php if ($this->filterColumn): ?>
|
||||
= <?= $this->formSelect('filterValue', $this->filterValue, array('class' => 'autosubmit'), $this->filterValues) ?>
|
||||
<?php endif ?>
|
||||
<?= $this->formSelect('start', $this->start, array('class' => 'autosubmit'), array(
|
||||
'-15min' => '15 minutes',
|
||||
'-60min' => '1 hour',
|
||||
'-2hour' => '4 hours',
|
||||
'-1day' => '1 day',
|
||||
)) ?>
|
||||
</form>
|
||||
</div>
|
||||
|
||||
<div class="content">
|
||||
<?php if (is_array($this->images)): ?>
|
||||
<?= $this->render('show/legend.phtml') ?>
|
||||
<?php foreach ($this->images as $title => $url): ?>
|
||||
<img src="<?= $url ?>" class="graphiteImg" alt="" width="<?= $this->width ?>" height="<?= $this->height ?>" />
|
||||
<?php endforeach ?>
|
||||
<?php else: ?>
|
||||
<?= $this->translate('Please make your selection') ?>
|
||||
<?php endif ?>
|
||||
</div>
|
||||
|
||||
Loading…
Reference in a new issue