You are here

function getdirections_location_u2n_path in Get Directions 6.2

Same name and namespace in other branches
  1. 6 getdirections.api.inc \getdirections_location_u2n_path()
  2. 7.3 getdirections.api.inc \getdirections_location_u2n_path()
  3. 7.2 getdirections.api.inc \getdirections_location_u2n_path()

API Function to generate a url path for use by other modules/themes.

Example Usage: $path = getdirections_location_u2n_path($fromuid, $tonid); $url = l(t('Get directions'), $path);

Parameters

int $fromuid: Required. The uid of the location user of the starting point

int $tonid: Required. The nid of the location node of the destination

Return value

Returns a path relative to the drupal root.

File

./getdirections.api.inc, line 149
Get directions API

Code

function getdirections_location_u2n_path($fromuid, $tonid) {
  if (module_exists('location') && is_numeric($fromuid) && is_numeric($tonid)) {
    return "getdirections/location_u2n/{$fromuid}/{$tonid}";
  }
}