27 lines
549 B
PHP
27 lines
549 B
PHP
<?php
|
|
|
|
namespace Icinga\Module\Director\Dashboard\Dashlet;
|
|
|
|
class CommandTemplatesDashlet extends CheckCommandsDashlet
|
|
{
|
|
protected $icon = 'cubes';
|
|
|
|
public function getSummary()
|
|
{
|
|
return $this->translate(
|
|
'External Notification Commands have been defined in your local Icinga 2'
|
|
. ' Configuration. '
|
|
);
|
|
}
|
|
|
|
public function getTitle()
|
|
{
|
|
return $this->translate('Command Templates');
|
|
}
|
|
|
|
public function getUrl()
|
|
{
|
|
return 'director/commands/templates';
|
|
}
|
|
}
|