icingaweb2-module-director/library/Director/Dashboard/Dashlet/CommandTemplatesDashlet.php

27 lines
548 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';
}
}