Thomas Gelf e200221529 data/vars: add a new table
Also cleaned up some obsolete code

fixes #1016
2017-07-14 13:21:42 +02:00

31 lines
572 B
PHP

<?php
namespace Icinga\Module\Director\Dashboard\Dashlet;
class CustomvarDashlet extends Dashlet
{
protected $icon = 'keyboard';
public function getTitle()
{
return $this->translate('CustomVar Overview');
}
public function getSummary()
{
return $this->translate(
'Get an overview of used CustomVars and their variants'
);
}
public function getUrl()
{
return 'director/data/vars';
}
public function listRequiredPermissions()
{
return array('director/admin');
}
}