You are here

function farm_calendar_farm_dashboard_panes in farmOS 7

Implements hook_farm_dashboard_panes().

File

modules/farm/farm_calendar/farm_calendar.farm_dashboard.inc, line 10
Farm dashboard hooks implemented by farm calendar module.

Code

function farm_calendar_farm_dashboard_panes() {
  return array(
    'farm_calendar_date' => array(
      'callback' => 'farm_calendar_dashboard_date',
      'group' => 'logs',
      'weight' => -1,
    ),
  );
}