icingadb-web/library/Icingadb/Widget/ItemTable/GridCellLayout.php

40 lines
944 B
PHP
Raw Normal View History

<?php
/* Icinga DB Web | (c) 2023 Icinga GmbH | GPLv2 */
namespace Icinga\Module\Icingadb\Widget\ItemTable;
use ipl\Html\BaseHtmlElement;
use ipl\Web\Widget\Link;
trait GridCellLayout
{
/**
* Creates a state badge for the Host / Service group with the highest severity that an object in the group has,
* along with the count of the objects with this severity belonging to the corresponding group.
*
* @return Link
*/
abstract public function createGroupBadge(): Link;
2023-08-09 08:25:44 -04:00
protected function assembleVisual(BaseHtmlElement $visual): void
{
$visual->add($this->createGroupBadge());
}
2023-08-09 08:25:44 -04:00
protected function assembleTitle(BaseHtmlElement $title): void
{
$title->addHtml(
$this->createSubject(),
$this->createCaption()
);
}
2023-08-09 08:25:44 -04:00
protected function assemble(): void
{
$this->add([
$this->createTitle()
]);
}
}