You are here

function getdirections_user_setlocations_via in Get Directions 7.3

Same name and namespace in other branches
  1. 6.2 getdirections.module \getdirections_user_setlocations_via()
  2. 6 getdirections.module \getdirections_user_setlocations_via()
  3. 7.2 getdirections.module \getdirections_user_setlocations_via()

Function to setup the map to display waypoints

Parameters

$uids: Required. A comma delimited list of uids

Return value

Returns the themed map

1 call to getdirections_user_setlocations_via()
getdirections_direction_box in ./getdirections.module
for colorbox and suchlike
1 string reference to 'getdirections_user_setlocations_via'
getdirections_menu in ./getdirections.module
Implement hook_menu().

File

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

Code

function getdirections_user_setlocations_via($uids, $width = '', $height = '') {
  $content = getdirections_entity_setlocations_via($uids, 'user', $width, $height);
  return $content;
}