You are here

function getdirections_is_advanced in Get Directions 6.2

Same name and namespace in other branches
  1. 7.2 getdirections.module \getdirections_is_advanced()
3 calls to getdirections_is_advanced()
getdirections_direction_form in ./getdirections.module
Function to setup the form
theme_getdirections_direction_form in ./getdirections.theme.inc
theme_getdirections_show in ./getdirections.theme.inc
Theme to use for when one or no locations are supplied.

File

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

Code

function getdirections_is_advanced() {
  $defaults = getdirections_defaults();
  if (isset($defaults['use_advanced']) && $defaults['use_advanced']) {
    return TRUE;
  }
  return FALSE;
}