You are here

function getdirections_location_n2u_path in Get Directions 7.2

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

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

Example Usage: $path = getdirections_location_n2u_path($fromnid, $touid); $url = l(t('Get directions'), $path);

Parameters

int $fromnid: Required. The vid of the location node of the starting point

int $touid: Required. The uid of the location user of the destination

Return value

Returns a path relative to the drupal root.

File

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

Code

function getdirections_location_n2u_path($fromnid, $touid) {
  if (getdirections_get_current_supported_module() && is_numeric($fromnid) && is_numeric($touid)) {
    return "getdirections/location_u2n/{$fromnid}/{$touid}";
  }
}