ChoicesDashlet: new dashlets, host, service
This commit is contained in:
parent
9208c3b53c
commit
0cb1b328ec
|
@ -0,0 +1,41 @@
|
|||
<?php
|
||||
|
||||
namespace Icinga\Module\Director\Dashboard\Dashlet;
|
||||
|
||||
abstract class ChoicesDashlet extends Dashlet
|
||||
{
|
||||
protected $icon = 'flapping';
|
||||
|
||||
public function getTitle()
|
||||
{
|
||||
return $this->translate('Choices');
|
||||
}
|
||||
|
||||
public function getSummary()
|
||||
{
|
||||
return $this->translate(
|
||||
'Combine multiple templates into meaningful Choices, making live'
|
||||
. ' easier for your users'
|
||||
);
|
||||
}
|
||||
|
||||
protected function getType()
|
||||
{
|
||||
return strtolower(substr(
|
||||
substr(get_called_class(), strlen(__NAMESPACE__) + 1),
|
||||
0,
|
||||
- strlen('ChoicesDashlet')
|
||||
));
|
||||
}
|
||||
|
||||
public function getUrl()
|
||||
{
|
||||
|
||||
return 'director/templatechoices/' . $this->getType();
|
||||
}
|
||||
|
||||
public function listRequiredPermissions()
|
||||
{
|
||||
return array('director/admin');
|
||||
}
|
||||
}
|
|
@ -0,0 +1,7 @@
|
|||
<?php
|
||||
|
||||
namespace Icinga\Module\Director\Dashboard\Dashlet;
|
||||
|
||||
class HostChoicesDashlet extends ChoicesDashlet
|
||||
{
|
||||
}
|
|
@ -0,0 +1,7 @@
|
|||
<?php
|
||||
|
||||
namespace Icinga\Module\Director\Dashboard\Dashlet;
|
||||
|
||||
class ServiceChoicesDashlet extends ChoicesDashlet
|
||||
{
|
||||
}
|
Loading…
Reference in New Issue