-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathIcons.php
48 lines (27 loc) · 936 Bytes
/
Icons.php
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
<?php
/* Icinga Notifications Web | (c) 2023 Icinga GmbH | GPLv2 */
namespace Icinga\Module\Notifications\Common;
final class Icons
{
private function __construct()
{
}
public const WARNING = 'exclamation-triangle';
public const OK = 'circle-check';
public const CRITICAL = 'circle-exclamation';
public const ERROR = 'circle-xmark';
public const USER = 'user';
public const USER_MANAGER = 'user-tie';
public const CLOSED = 'check';
public const OPENED = 'sun';
public const MANAGE = 'bell';
public const UNMANAGE = 'bell-slash';
public const UNSUBSCRIBED = 'comment-slash';
public const SUBSCRIBED = 'comment';
public const TRIGGERED = 'square-up-right';
public const NOTIFIED = 'paper-plane';
public const RULE_MATCHED = 'filter';
public const UNDEFINED = 'notdef';
public const EMAIL = 'at';
public const WEBHOOK = 'envelope';
}