You are here

function getdirections_get_tid_from_lid in Get Directions 7.3

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

File

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

Code

function getdirections_get_tid_from_lid($lid) {
  $tid = FALSE;
  if (module_exists('getlocations_fields')) {
    $tid = getlocations_get_tid_from_lid($lid);
  }
  if ($tid) {
    return $tid;
  }
  return FALSE;
}