You are here

function getlocations_addressfield_convert in Get Locations 7

Same name and namespace in other branches
  1. 7.2 getlocations.module \getlocations_addressfield_convert()

Function

Return value

Returns

1 call to getlocations_addressfield_convert()
getlocations_other_load_locations in ./getlocations.module
Function to fetch locations. Supports Geofield and Geolocation modules

File

./getlocations.module, line 5982
getlocations.module @author Bob Hutchinson http://drupal.org/user/52366 @copyright GNU GPL

Code

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