icingadb-web/library/Icingadb/Common/Icons.php
Eric Lippmann 272e791390 License source files as GPL-3.0-or-later
Add SPDX license headers and mark source files as GPL-3.0-or-later to
preserve the option to relicense under later GPL versions.
2026-03-11 14:03:05 +01:00

37 lines
784 B
PHP

<?php
// SPDX-FileCopyrightText: 2019 Icinga GmbH <https://icinga.com>
// SPDX-License-Identifier: GPL-3.0-or-later
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 NOTIFICATIONS_DISABLED = 'bell-slash';
public const ACTIVE_CHECKS_DISABLED = 'eye-slash';
public const USER = 'user';
public const USERGROUP = 'users';
public const WARNING = 'exclamation-triangle';
}