function hook_url_inbound_alter

hook_url_inbound_alter(&$path, $original_path, $path_language)

Alters inbound URL requests.

Parameters

$path: The path being constructed, which, if a path alias, has been resolved to a Drupal path by the database, and which also may have been altered by other modules before this one.

$original_path: The original path, before being checked for path aliases or altered by any modules.

$path_language: The language of the path.

See also

drupal_get_normal_path()

Related topics

File

modules/system/system.api.php, line 4312
Hooks provided by Drupal core and the System module.

Code

function hook_url_inbound_alter(&$path, $original_path, $path_language) {
  // Create the path user/me/edit, which allows a user to edit their account.
  if (preg_match('|^user/me/edit(/.*)?|', $path, $matches)) {
    global $user;
    $path = 'user/' . $user->uid . '/edit' . $matches[1];
  }
}

© 2001–2016 by the original authors
Licensed under the GNU General Public License, version 2 and later.
Drupal is a registered trademark of Dries Buytaert.
https://api.drupal.org/api/drupal/modules!system!system.api.php/function/hook_url_inbound_alter/7.x