You are here

function farm_plan_map_farm_map_view in farmOS 7

Implements hook_farm_map_view().

File

modules/farm/farm_plan/farm_plan_map/farm_plan_map.farm_map.inc, line 21
Farm Map hooks implemented by the Farm Plan Map module.

Code

function farm_plan_map_farm_map_view($name, $element) {

  // Add the plan behavior to farm plan maps.
  if ($name == 'farm_plan_map') {
    if (!empty($element['#plan_id'])) {
      farm_map_add_behavior('plan', array(
        'plan_id' => $element['#plan_id'],
        'zoom' => TRUE,
      ));
    }
  }
}