icingadb-web/library/Icingadb/Widget/HostStatusBar.php
2020-04-24 15:01:29 +02:00

21 lines
523 B
PHP

<?php
/* Icinga DB Web | (c) 2020 Icinga GmbH | GPLv2 */
namespace Icinga\Module\Icingadb\Widget;
use Icinga\Module\Icingadb\Common\BaseStatusBar;
use ipl\Html\BaseHtmlElement;
class HostStatusBar extends BaseStatusBar
{
protected function assembleTotal(BaseHtmlElement $total)
{
$total->add(sprintf(tp('%d Host', '%d Hosts', $this->summary->hosts_total), $this->summary->hosts_total));
}
protected function createStateBadges()
{
return new HostStateBadges($this->summary);
}
}