19 lines
352 B
PHP
19 lines
352 B
PHP
<?php
|
|
|
|
namespace Icinga\Module\Director\Dashboard;
|
|
|
|
class DeploymentDashboard extends Dashboard
|
|
{
|
|
protected $dashletNames = array(
|
|
'Deployment',
|
|
'ActivityLog',
|
|
'Job',
|
|
'Infrastructure',
|
|
);
|
|
|
|
public function getTitle()
|
|
{
|
|
return $this->translate('Deploy configuration to your Icinga nodes');
|
|
}
|
|
}
|