icingadb-web/library/Icingadb/Common/BaseStatusBar.php
Eric Lippmann 272e791390 License source files as GPL-3.0-or-later
Add SPDX license headers and mark source files as GPL-3.0-or-later to
preserve the option to relicense under later GPL versions.
2026-03-11 14:03:05 +01:00

56 lines
1.3 KiB
PHP

<?php
// SPDX-FileCopyrightText: 2019 Icinga GmbH <https://icinga.com>
// SPDX-License-Identifier: GPL-3.0-or-later
namespace Icinga\Module\Icingadb\Common;
use Icinga\Module\Icingadb\Model\HoststateSummary;
use Icinga\Module\Icingadb\Model\ServicestateSummary;
use ipl\Html\BaseHtmlElement;
use ipl\Html\Html;
use ipl\Orm\Model;
use ipl\Stdlib\BaseFilter;
abstract class BaseStatusBar extends BaseHtmlElement
{
use BaseFilter;
/** @var ServicestateSummary|HoststateSummary */
protected $summary;
protected $tag = 'div';
protected $defaultAttributes = ['class' => 'status-bar'];
/**
* Create a host or service status bar
*
* @param ServicestateSummary|HoststateSummary $summary
*/
public function __construct($summary)
{
$this->summary = $summary;
}
abstract protected function assembleTotal(BaseHtmlElement $total): void;
abstract protected function createStateBadges(): BaseHtmlElement;
protected function createCount(): BaseHtmlElement
{
$total = Html::tag('span', ['class' => 'item-count']);
$this->assembleTotal($total);
return $total;
}
protected function assemble(): void
{
$this->add([
$this->createCount(),
$this->createStateBadges()
]);
}
}