3
0
Fork 0
mirror of https://github.com/farmOS/farmOS.git synced 2024-02-23 11:37:38 +01:00
farmOS/modules/core/ui/metrics/farm_ui_metrics.module

20 lines
302 B
PHP

<?php
/**
* @file
* The farmOS UI Metrics module.
*/
/**
* Implements hook_farm_dashboard_panes().
*/
function farm_ui_metrics_farm_dashboard_panes() {
return [
'metrics' => [
'block' => 'farm_metrics_block',
'title' => t('Metrics'),
'region' => 'second',
],
];
}