function route_planner_block_info in Route Planner 7
Implements hook_block_info()
File
- ./
route_planner.module, line 31 - The Route Planner module create blocks to show a route from any address to a fixed point.
Code
function route_planner_block_info() {
$blocks['route_target'] = array(
'info' => t('Route Planner Address Field'),
'cache' => DRUPAL_CACHE_PER_ROLE,
);
$blocks['map'] = array(
'info' => t('Route Planner Map Display'),
'cache' => DRUPAL_CACHE_PER_ROLE,
);
return $blocks;
}