mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
* Dashboard Cleanup Remove static widgets table, list of available widgets should not be in the database. Remove legacy ajax scripts Cleanup and reorganize controllers * reorganize code to put all dashboard things into it's controller better url scheme while supporting the original * lint clean ups * properly formatted language file * style fixes * update schema
65 lines
1.3 KiB
PHP
65 lines
1.3 KiB
PHP
<?php
|
|
|
|
return [
|
|
'alerts' => [
|
|
'title' => 'Alerts',
|
|
],
|
|
'alertlog' => [
|
|
'title' => 'Alert History',
|
|
],
|
|
'alertlog-stats' => [
|
|
'title' => 'Alert History Stats',
|
|
],
|
|
'availability-map' => [
|
|
'title' => 'Availability Map',
|
|
],
|
|
'component-status' => [
|
|
'title' => 'Component Status',
|
|
],
|
|
'device-summary-horiz' => [
|
|
'title' => 'Device Summary Horizontal',
|
|
],
|
|
'device-summary-vert' => [
|
|
'title' => 'Device Summary Vertical',
|
|
],
|
|
'device-types' => [
|
|
'title' => 'Device Types',
|
|
],
|
|
'eventlog' => [
|
|
'title' => 'Eventlog',
|
|
],
|
|
'generic-graph' => [
|
|
'title' => 'Graph',
|
|
],
|
|
'generic-image' => [
|
|
'title' => 'External Images',
|
|
],
|
|
'globe' => [
|
|
'title' => 'Globe Map',
|
|
],
|
|
'graylog' => [
|
|
'title' => 'Graylog',
|
|
],
|
|
'notes' => [
|
|
'title' => 'Notes',
|
|
],
|
|
'server-stats' => [
|
|
'title' => 'Server Stats',
|
|
],
|
|
'syslog' => [
|
|
'title' => 'Syslog',
|
|
],
|
|
'top-devices' => [
|
|
'title' => 'Top Devices',
|
|
],
|
|
'top-errors' => [
|
|
'title' => 'Top Errors',
|
|
],
|
|
'top-interfaces' => [
|
|
'title' => 'Top Interfaces',
|
|
],
|
|
'worldmap' => [
|
|
'title' => 'World Map',
|
|
],
|
|
];
|