You are here

function location_geocoding_options_page in Location 5.3

Same name and namespace in other branches
  1. 5 location.module \location_geocoding_options_page()

Callback for geocoding options page.

1 string reference to 'location_geocoding_options_page'
location_menu in ./location.module
Implementation of hook_menu().

File

./location.d5.inc, line 55
Drupal 5 specific routines.

Code

function location_geocoding_options_page() {
  $iso = arg(4);
  $service = arg(5);
  if (!empty($iso) || !empty($service)) {
    return location_geocoding_parameters_page($iso, $service);
  }
  require_once drupal_get_path('module', 'location') . '/location.admin.inc';
  return drupal_get_form('location_geocoding_options_form');
}