2016-10-27 19:58:31 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Icinga\Module\Director\Dashboard\Dashlet;
|
|
|
|
|
|
|
|
class HostObjectDashlet extends Dashlet
|
|
|
|
{
|
|
|
|
protected $icon = 'host';
|
|
|
|
|
|
|
|
protected $requiredStats = array('host', 'hostgroup');
|
|
|
|
|
|
|
|
public function getTitle()
|
|
|
|
{
|
|
|
|
return $this->translate('Host objects');
|
|
|
|
}
|
|
|
|
|
2017-06-19 00:43:45 +02:00
|
|
|
public function listRequiredPermissions()
|
|
|
|
{
|
|
|
|
return ['director/hosts'];
|
|
|
|
}
|
|
|
|
|
2016-10-27 19:58:31 +02:00
|
|
|
public function getUrl()
|
|
|
|
{
|
2017-06-19 00:43:45 +02:00
|
|
|
return 'director/dashboard?name=hosts';
|
2016-10-27 19:58:31 +02:00
|
|
|
}
|
|
|
|
}
|