mirror of
https://github.com/Icinga/icingaweb2-module-director.git
synced 2025-07-31 01:34:12 +02:00
22 lines
477 B
PHP
22 lines
477 B
PHP
<?php
|
|
|
|
namespace Icinga\Module\Director\Dashboard\Dashlet;
|
|
|
|
class NotificationCommandsDashlet extends CheckCommandsDashlet
|
|
{
|
|
protected $icon = 'wrench';
|
|
|
|
public function getSummary()
|
|
{
|
|
return $this->translate(
|
|
'Notification Commands allow you to trigger any action you want when'
|
|
. ' a notification takes place'
|
|
);
|
|
}
|
|
|
|
public function getTitle()
|
|
{
|
|
return $this->translate('Notification Commands');
|
|
}
|
|
}
|