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

32 lines
644 B
PHP

<?php
namespace Icinga\Module\Director\Dashboard\Dashlet;
class ServiceTemplatesDashlet extends Dashlet
{
protected $icon = 'cubes';
public function getTitle()
{
return $this->translate('Service Templates');
}
public function getSummary()
{
return $this->translate(
'Manage your Service Templates. Use Fields to make it easy for'
. ' your users to get them customized.'
);
}
public function getUrl()
{
return 'director/services/templates';
}
public function listRequiredPermissions()
{
return array('director/admin');
}
}