blob: 9b0dc5b97221236b92f1be4a46cc02454277b46a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
<?php
/* Icinga DB Web | (c) 2020 Icinga GmbH | GPLv2 */
namespace Icinga\Module\Icingadb\Common;
use ipl\Html\BaseHtmlElement;
trait ListItemMinimalLayout
{
use CaptionDisabled;
protected function assembleHeader(BaseHtmlElement $header)
{
$header->add($this->createTitle());
if (! $this->isCaptionDisabled()) {
$header->add($this->createCaption());
}
$header->add($this->createTimestamp());
}
protected function assembleMain(BaseHtmlElement $main)
{
$main->add($this->createHeader());
}
}
|