drupal_get_path_alias

Versions
mediamosa-21
drupal_get_path_alias($path = NULL, $path_language = NULL)

Given an internal Drupal path, return the alias set by the administrator.

If no path is provided, the function will return the alias of the current page.

Parameters

$path An internal Drupal path.

$path_language An optional language code to look up the path in.

Return value

An aliased path if one was found, or the original path if no alias was found.

▾ 5 functions call drupal_get_path_alias()

block_block_info_alter in modules/block/block.module
Implements hook_block_info_alter().
path_admin_overview in modules/path/path.admin.inc
Return a listing of all defined URL aliases.
system_site_information_settings in modules/system/system.admin.inc
Form builder; The general site information form.
url in includes/common.inc
Generate a URL.
_statistics_link in modules/statistics/statistics.module
It is possible to adjust the width of columns generated by the statistics module.

Code

includes/path.inc, line 193

<?php
function drupal_get_path_alias($path = NULL, $path_language = NULL) {
  // If no path is specified, use the current page's path.
  if ($path == NULL) {
    $path = $_GET['q'];
  }
  $result = $path;
  if ($alias = drupal_lookup_path('alias', $path, $path_language)) {
    $result = $alias;
  }
  return $result;
}
?>