You are here

farm_ui_metrics.module in farmOS 2.x

The farmOS UI Metrics module.

File

modules/core/ui/metrics/farm_ui_metrics.module
View source
<?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',
    ],
  ];
}