icingaweb2-module-director/application/views/scripts/index/actions.phtml

18 lines
387 B
PHTML
Raw Normal View History

<h1 style="clear: both"><?= $this->escape($title) ?></h1>
<ul class="main-actions" data-base-target="_next">
<?php foreach ($actions as $a): ?>
<li>
2016-02-28 16:43:45 +01:00
<a<?php
if (array_key_exists(4, $a)) {
echo ' class="state-' . $a[4] . '"';
}
?> href="<?= $this->url($a[2]) ?>">
<?= $this->icon($a[0]) ?>
<?= $this->escape($a[1]) ?>
<p><?= $a[3] ?></p>
</a>
</li>
<?php endforeach ?>
</ul>