mirror of
https://github.com/Icinga/icingaweb2.git
synced 2026-02-23 01:41:34 -05:00
Represents how we plan to handle view scripts that are re-usable. Should supersede all <action>/component/* view scripts in the upcoming future.
16 lines
No EOL
564 B
PHTML
16 lines
No EOL
564 B
PHTML
<?php if (! $this->compact): ?>
|
|
<?= $tabs; ?>
|
|
<?php endif ?>
|
|
<?php if (($hostCount = count($objects)) > 0): ?>
|
|
<div class="hbox-item">
|
|
<strong><?= sprintf($this->translatePlural('Host (%u)', 'Hosts (%u)', $hostCount), $hostCount); ?></strong>
|
|
</div>
|
|
<div class="hbox-item">
|
|
<?= $hostStatesPieChart; ?>
|
|
</div>
|
|
<div class="hbox-item" style="font-size: 14px">
|
|
<?php foreach (array_filter($hostStates) as $text => $count): ?>
|
|
<?= sprintf('%s: %u', $this->translate(strtoupper($text)), $count); ?><br>
|
|
<?php endforeach ?>
|
|
</div>
|
|
<?php endif ?> |