mirror of
https://github.com/Icinga/icingadb-web.git
synced 2026-04-22 06:38:43 -04:00
45 lines
890 B
PHP
45 lines
890 B
PHP
<?php
|
|
|
|
/* Icinga DB Web | (c) 2020 Icinga GmbH | GPLv2 */
|
|
|
|
namespace Icinga\Module\Icingadb\Common;
|
|
|
|
use ipl\Html\BaseHtmlElement;
|
|
use ipl\Html\Html;
|
|
|
|
abstract class BaseStatusBar extends BaseHtmlElement
|
|
{
|
|
use BaseFilter;
|
|
|
|
protected $summary;
|
|
|
|
protected $tag = 'div';
|
|
|
|
protected $defaultAttributes = ['class' => 'status-bar'];
|
|
|
|
public function __construct($summary)
|
|
{
|
|
$this->summary = $summary;
|
|
}
|
|
|
|
abstract protected function assembleTotal(BaseHtmlElement $total);
|
|
|
|
abstract protected function createStateBadges();
|
|
|
|
protected function createCount()
|
|
{
|
|
$total = Html::tag('span', ['class' => 'item-count']);
|
|
|
|
$this->assembleTotal($total);
|
|
|
|
return $total;
|
|
}
|
|
|
|
protected function assemble()
|
|
{
|
|
$this->add([
|
|
$this->createCount(),
|
|
$this->createStateBadges()
|
|
]);
|
|
}
|
|
}
|