icingadb-web/library/Icingadb/Common/Icons.php
2025-10-21 14:56:41 +02:00

32 lines
612 B
PHP

<?php
/* Icinga DB Web | (c) 2020 Icinga GmbH | GPLv2 */
namespace Icinga\Module\Icingadb\Common;
class Icons
{
public const COMMENT = 'comment';
public const HOST_DOWN = 'sitemap';
public const UNREACHABLE = 'sitemap';
public const IN_DOWNTIME = 'plug';
public const IS_ACKNOWLEDGED = 'check';
public const IS_FLAPPING = 'bolt';
public const IS_PERSISTENT = 'thumbtack';
public const NOTIFICATION = 'bell';
public const REMOVE = 'trash';
public const USER = 'user';
public const USERGROUP = 'users';
public const WARNING = 'exclamation-triangle';
}