You are here

function route_planner_block_configure in Route Planner 8

Same name and namespace in other branches
  1. 7 route_planner.module \route_planner_block_configure()

Implements hook_block_configure().

File

./route_planner.module, line 36
The Route Planner module create blocks to show a route from any address to a fixed point.

Code

function route_planner_block_configure($delta = '') {
  module_load_include('inc', 'route_planner', 'route_planner.admin');
  switch ($delta) {
    case 'route_target':
    case 'map':
      return route_planner_settings_form();
      break;
  }
}