2016-10-27 19:58:31 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Icinga\Module\Director\Dashboard;
|
|
|
|
|
|
|
|
class DeploymentDashboard extends Dashboard
|
|
|
|
{
|
|
|
|
protected $dashletNames = array(
|
|
|
|
'Deployment',
|
|
|
|
'ActivityLog',
|
2017-01-16 08:50:18 +01:00
|
|
|
'Job',
|
|
|
|
'Infrastructure',
|
2016-10-27 19:58:31 +02:00
|
|
|
);
|
|
|
|
|
|
|
|
public function getTitle()
|
|
|
|
{
|
|
|
|
return $this->translate('Deploy configuration to your Icinga nodes');
|
|
|
|
}
|
|
|
|
}
|