summaryrefslogtreecommitdiffstats
path: root/library/Director/Dashboard/DeploymentDashboard.php
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--library/Director/Dashboard/DeploymentDashboard.php17
1 files changed, 17 insertions, 0 deletions
diff --git a/library/Director/Dashboard/DeploymentDashboard.php b/library/Director/Dashboard/DeploymentDashboard.php
new file mode 100644
index 0000000..6cd2005
--- /dev/null
+++ b/library/Director/Dashboard/DeploymentDashboard.php
@@ -0,0 +1,17 @@
+<?php
+
+namespace Icinga\Module\Director\Dashboard;
+
+class DeploymentDashboard extends Dashboard
+{
+ protected $dashletNames = array(
+ 'ActivityLog',
+ 'Deployment',
+ 'Infrastructure',
+ );
+
+ public function getTitle()
+ {
+ return $this->translate('Deploy configuration to your Icinga nodes');
+ }
+}