mirror of
https://github.com/Icinga/icingaweb2-module-director.git
synced 2025-09-28 04:09:00 +02:00
18 lines
304 B
PHP
18 lines
304 B
PHP
<?php
|
|
|
|
namespace Icinga\Module\Director\Dashboard;
|
|
|
|
class DataDashboard extends Dashboard
|
|
{
|
|
protected $dashletNames = array(
|
|
'Datafield',
|
|
'Datalist',
|
|
'Customvar'
|
|
);
|
|
|
|
public function getTitle()
|
|
{
|
|
return $this->translate('Do more with custom data');
|
|
}
|
|
}
|