You are here

function getdirections_addressfield_convert in Get Directions 7.3

Same name and namespace in other branches
  1. 7.2 getdirections.module \getdirections_addressfield_convert()

Convert an addressfield

2 calls to getdirections_addressfield_convert()
getdirections_other_load_locations in ./getdirections.module
Load one or more locations For Geofield and Geolocation modules
theme_getdirections_addressfield_loadaddress in ./getdirections.module
Handles addressfield

File

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

Code

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