mirror of
https://github.com/Icinga/icingadb-web.git
synced 2026-06-09 08:42:14 -04:00
Introduce NotificationList Widget
This commit is contained in:
parent
024496ad77
commit
1171a27c34
1 changed files with 15 additions and 0 deletions
15
library/Eagle/Widget/ItemList/NotificationList.php
Normal file
15
library/Eagle/Widget/ItemList/NotificationList.php
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
<?php
|
||||
|
||||
namespace Icinga\Module\Eagle\Widget\ItemList;
|
||||
|
||||
use Icinga\Module\Eagle\Widget\BaseItemList;
|
||||
|
||||
class NotificationList extends BaseItemList
|
||||
{
|
||||
protected $defaultAttributes = ['class' => 'notification-list'];
|
||||
|
||||
protected function getItemClass()
|
||||
{
|
||||
return NotificationListItem::class;
|
||||
}
|
||||
}
|
||||
Loading…
Reference in a new issue