diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-28 12:45:13 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-28 12:45:13 +0000 |
commit | a4a4a84d79e95d34f80346c423b4e84f7af3f03d (patch) | |
tree | 91608c01e82676102457ffff2219f321ec474657 /library/Map/ProvidedHook/CubeLinks.php | |
parent | Initial commit. (diff) | |
download | icingaweb2-module-map-a4a4a84d79e95d34f80346c423b4e84f7af3f03d.tar.xz icingaweb2-module-map-a4a4a84d79e95d34f80346c423b4e84f7af3f03d.zip |
Adding upstream version 1.1.0.upstream/1.1.0upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'library/Map/ProvidedHook/CubeLinks.php')
-rw-r--r-- | library/Map/ProvidedHook/CubeLinks.php | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/library/Map/ProvidedHook/CubeLinks.php b/library/Map/ProvidedHook/CubeLinks.php new file mode 100644 index 0000000..5f819b4 --- /dev/null +++ b/library/Map/ProvidedHook/CubeLinks.php @@ -0,0 +1,36 @@ +<?php + +namespace Icinga\Module\Map\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; + } + + $vars = array("objectType"=>"host"); + foreach ($cube->getSlices() as $key => $val) { + $vars['_host_' . $key] = $val; + } + + $url = 'map'; + + $this->addActionLink( + $this->makeUrl($url, $vars), + $view->translate('Show on map'), + $view->translate('This shows all matching hosts and their current state on the map module'), + 'globe' + ); + } +} |