You are here

function route_planner_get_address_form in Route Planner 6

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

Get Address-Form Block

Helper function to add several stuff to the Block.

Return value

The address form.

1 call to route_planner_get_address_form()
route_planner_block in ./route_planner.module
Implementation of hook_block().

File

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

Code

function route_planner_get_address_form() {

  // Get the address form.
  $output = drupal_get_form('route_planner_address_form');
  return $output;
}