Display active plans in a dashboard pane.

This commit is contained in:
paul121 2020-06-18 13:24:59 -07:00 committed by Michael Stenta
parent d041760e51
commit 046f3688bd
1 changed files with 18 additions and 0 deletions

View File

@ -0,0 +1,18 @@
<?php
/**
* @file
* Farm dashboard hooks implemented by farm plan module.
*/
/**
* Implements hook_farm_dashboard_panes().
*/
function farm_plan_farm_dashboard_panes() {
return array(
'farm_plan_active_plans' => array(
'view' => 'farm_plan',
'view_display_id' => 'block_active_plans',
'group' => 'plans',
),
);
}