blob: 2cb95595359f37195e00b67596e284210da3b2f6 (
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
|
<?php
namespace Icinga\Module\Director\ProvidedHook;
use Icinga\Data\Filter\Filter;
use Icinga\Module\Cube\Cube;
use Icinga\Module\Cube\Hook\ActionsHook;
use Icinga\Module\Cube\Ido\IdoHostStatusCube;
use Icinga\Web\View;
class CubeLinks extends ActionsHook
{
/**
* @inheritdoc
*/
public function prepareActionLinks(Cube $cube, View $view)
{
if (! $cube instanceof IdoHostStatusCube) {
return;
}
$cube->finalizeInnerQuery();
$query = $cube->innerQuery()
->reset('columns')
->columns(array('host' => 'o.name1'))
->reset('group');
$hosts = $cube->db()->fetchCol($query);
$count = count($hosts);
if ($count === 1) {
$url = 'director/host/edit';
$params = array('name' => $hosts[0]);
$title = $view->translate('Modify a host');
$description = sprintf(
$view->translate('This allows you to modify properties for "%s"'),
$hosts[0]
);
} else {
$params = null;
$filter = Filter::matchAny();
foreach ($hosts as $host) {
$filter->addFilter(
Filter::matchAny(Filter::expression('name', '=', $host))
);
}
$url = 'director/hosts/edit?' . $filter->toQueryString();
$title = sprintf($view->translate('Modify %d hosts'), $count);
$description = $view->translate(
'This allows you to modify properties for all chosen hosts at once'
);
}
$this->addActionLink(
$this->makeUrl($url, $params),
$title,
$description,
'wrench'
);
}
}
|