summaryrefslogtreecommitdiffstats
path: root/library/Director/Dashboard/AutomationDashboard.php
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--library/Director/Dashboard/AutomationDashboard.php17
1 files changed, 17 insertions, 0 deletions
diff --git a/library/Director/Dashboard/AutomationDashboard.php b/library/Director/Dashboard/AutomationDashboard.php
new file mode 100644
index 0000000..dd07d71
--- /dev/null
+++ b/library/Director/Dashboard/AutomationDashboard.php
@@ -0,0 +1,17 @@
+<?php
+
+namespace Icinga\Module\Director\Dashboard;
+
+class AutomationDashboard extends Dashboard
+{
+ protected $dashletNames = array(
+ 'ImportSource',
+ 'Sync',
+ 'Job'
+ );
+
+ public function getTitle()
+ {
+ return $this->translate('Automate all tasks');
+ }
+}