summaryrefslogtreecommitdiffstats
path: root/library/Pnp/Web/Controller.php
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-28 12:46:04 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-28 12:46:04 +0000
commitb880345a8a897b3fe600ef94a0fee5bb5f2f8558 (patch)
treefdc7483ceea33373b6cfa4a8c20c11cb02a2676a /library/Pnp/Web/Controller.php
parentInitial commit. (diff)
downloadicingaweb2-module-pnp-upstream.tar.xz
icingaweb2-module-pnp-upstream.zip
Adding upstream version 1.1.0.upstream/1.1.0upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '')
-rw-r--r--library/Pnp/Web/Controller.php27
1 files changed, 27 insertions, 0 deletions
diff --git a/library/Pnp/Web/Controller.php b/library/Pnp/Web/Controller.php
new file mode 100644
index 0000000..4af5c06
--- /dev/null
+++ b/library/Pnp/Web/Controller.php
@@ -0,0 +1,27 @@
+<?php
+
+namespace Icinga\Module\Pnp\Web;
+
+use Icinga\Web\Controller as IcingaController;
+
+class Controller extends IcingaController
+{
+ public function init()
+ {
+ $this->getTabs()->add('pnp', array(
+ 'label' => $this->translate('PNP'),
+ 'url' => 'pnp',
+ ));
+ }
+
+ protected function setViewScript($name)
+ {
+ $this->_helper->viewRenderer->setNoController(true);
+ $this->_helper->viewRenderer->setScriptAction($name);
+ }
+
+ protected function getBaseUrl()
+ {
+ return rtrim($this->Config()->get('pnp4nagios', 'base_url', '/pnp4nagios'), '/');
+ }
+}