You are here

function getdirections_uid_load in Get Directions 7.3

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

File

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

Code

function getdirections_uid_load($arg) {
  return is_numeric($arg) && $arg > 0 && getdirections_user_check($arg) ? $arg : FALSE;
}