blob: 8c95d267208d9d3f69fa094d27fafc67c846ff30 (
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
|
<?php
/* Icinga DB Web | (c) 2020 Icinga GmbH | GPLv2 */
namespace Icinga\Module\Icingadb\Widget\ItemList;
use Icinga\Module\Icingadb\Common\CaptionDisabled;
use Icinga\Module\Icingadb\Common\LoadMore;
use Icinga\Module\Icingadb\Common\NoSubjectLink;
use Icinga\Module\Icingadb\Common\ViewMode;
use Icinga\Module\Icingadb\Common\BaseItemList;
use ipl\Orm\ResultSet;
use ipl\Web\Url;
class NotificationList extends BaseItemList
{
use CaptionDisabled;
use NoSubjectLink;
use ViewMode;
use LoadMore;
protected $defaultAttributes = ['class' => 'notification-list'];
/** @var ResultSet */
protected $data;
public function __construct(ResultSet $data)
{
parent::__construct($data);
}
protected function init()
{
$this->data = $this->getIterator($this->data);
$this->setDetailUrl(Url::fromPath('icingadb/event'));
}
protected function getItemClass(): string
{
switch ($this->getViewMode()) {
case 'minimal':
return NotificationListItemMinimal::class;
case 'detailed':
return NotificationListItemDetailed::class;
default:
return NotificationListItem::class;
}
}
protected function assemble()
{
$this->addAttributes(['class' => $this->getViewMode()]);
parent::assemble();
}
}
|