2016-10-27 19:58:31 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Icinga\Module\Director\Dashboard;
|
|
|
|
|
|
|
|
class DataDashboard extends Dashboard
|
|
|
|
{
|
2019-10-01 16:56:02 +02:00
|
|
|
protected $dashletNames = [
|
2016-10-27 19:58:31 +02:00
|
|
|
'Datafield',
|
2019-10-01 16:56:02 +02:00
|
|
|
'DatafieldCategory',
|
2016-10-27 19:58:31 +02:00
|
|
|
'Datalist',
|
2017-07-14 13:16:21 +02:00
|
|
|
'Customvar'
|
2019-10-01 16:56:02 +02:00
|
|
|
];
|
2016-10-27 19:58:31 +02:00
|
|
|
|
|
|
|
public function getTitle()
|
|
|
|
{
|
2017-07-14 11:02:44 +02:00
|
|
|
return $this->translate('Do more with custom data');
|
2016-10-27 19:58:31 +02:00
|
|
|
}
|
|
|
|
}
|