function location_geocoding_options_page in Location 5
Same name and namespace in other branches
- 5.3 location.d5.inc \location_geocoding_options_page()
1 string reference to 'location_geocoding_options_page'
- location_menu in ./
location.module - Implementation of hook_menu.
File
- ./
location.module, line 377
Code
function location_geocoding_options_page() {
$iso = arg(4);
$service = arg(5);
if (!empty($iso) || !empty($service)) {
return location_geocoding_parameters_page($iso, $service);
}
return drupal_get_form('location_geocoding_options_form');
}