You are here

function getdirections_addressfield_convert in Get Directions 7.2

Same name and namespace in other branches
  1. 7.3 getdirections.module \getdirections_addressfield_convert()
2 calls to getdirections_addressfield_convert()
getdirections_other_load_locations in ./getdirections.module
theme_getdirections_addressfield_loadaddress in ./getdirections.module

File

./getdirections.module, line 1938
Fetches google map directions.

Code

function getdirections_addressfield_convert($address) {
  $location = theme('getdirections_addressfield_convert', array(
    'address' => $address,
  ));
  return $location;
}