summaryrefslogtreecommitdiffstats
path: root/application/controllers/DependencytemplateController.php
diff options
context:
space:
mode:
Diffstat (limited to 'application/controllers/DependencytemplateController.php')
-rw-r--r--application/controllers/DependencytemplateController.php16
1 files changed, 16 insertions, 0 deletions
diff --git a/application/controllers/DependencytemplateController.php b/application/controllers/DependencytemplateController.php
new file mode 100644
index 0000000..e2bc49d
--- /dev/null
+++ b/application/controllers/DependencytemplateController.php
@@ -0,0 +1,16 @@
+<?php
+
+namespace Icinga\Module\Director\Controllers;
+
+use Icinga\Module\Director\Objects\IcingaDependency;
+use Icinga\Module\Director\Web\Controller\TemplateController;
+
+class DependencytemplateController extends TemplateController
+{
+ protected function requireTemplate()
+ {
+ return IcingaDependency::load([
+ 'object_name' => $this->params->get('name')
+ ], $this->db());
+ }
+}