icingadb-web/library/Icingadb/Web/Navigation/Renderer/HostProblemsBadge.php
Johannes Meyer 068377e4c6 Don't require relation state in state summary queries
Lets the models add the relation on their own, using
`utilize()` as the relation is only needed inside
expressions.
2022-06-02 14:24:51 +02:00

35 lines
932 B
PHP

<?php
/* Icinga DB Web | (c) 2020 Icinga GmbH | GPLv2 */
namespace Icinga\Module\Icingadb\Web\Navigation\Renderer;
use Icinga\Module\Icingadb\Common\Auth;
use Icinga\Module\Icingadb\Common\Links;
use Icinga\Module\Icingadb\Model\HoststateSummary;
use ipl\Web\Url;
class HostProblemsBadge extends ProblemsBadge
{
use Auth;
protected function fetchProblemsCount()
{
$summary = HoststateSummary::on($this->getDb());
$this->applyRestrictions($summary);
$count = (int) $summary->first()->hosts_down_unhandled;
if ($count) {
$this->setTitle(sprintf(
tp('One unhandled host down', '%d unhandled hosts down', $count),
$count
));
}
return $count;
}
protected function getUrl(): Url
{
return Links::hosts()->setParams(['host.state.is_problem' => 'y', 'sort' => 'host.state.severity desc']);
}
}