blob: b6455fe888a07ece70616fce6715cf9a024e3ff1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
<?php
namespace Icinga\Module\Director\Dashboard\Dashlet;
class DependencyObjectDashlet extends Dashlet
{
protected $icon = 'sitemap';
protected $requiredStats = ['dependency'];
public function getTitle()
{
return $this->translate('Dependencies');
}
public function getSummary()
{
return $this->translate('Object dependency relationships.')
. ' ' . parent::getSummary();
}
public function getUrl()
{
return 'director/dependencies/applyrules';
}
}
|