blob: f04b991e37863f375f519110b9fbc85136ed8b70 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<?php
/* Icinga DB Web | (c) 2020 Icinga GmbH | GPLv2 */
namespace Icinga\Module\Icingadb\Widget\ItemList;
use Icinga\Module\Icingadb\Common\ListItemMinimalLayout;
use ipl\Web\Widget\StateBall;
class HostListItemMinimal extends BaseHostListItem
{
use ListItemMinimalLayout;
protected function getStateBallSize(): string
{
return StateBall::SIZE_BIG;
}
}
|