1.13 (checked in on 2006/12/23 at 22:04:52 by dries)
Functions to handle paths in Drupal, including path aliasing.
These functions are not loaded for cached pages, but modules that need to use them in hook_init() or hook exit() can make them available, by executing "drupal_bootstrap(DRUPAL_BOOTSTRAP_PATH);".
| Name | Description |
|---|---|
| arg | Return a component of the current Drupal path. |
| drupal_get_normal_path | Given a path alias, return the internal path it represents. |
| drupal_get_path_alias | Given an internal Drupal path, return the alias set by the administrator. |
| drupal_get_title | Get the title of the current page, for display on the page and in the title bar. |
| drupal_init_path | Initialize the $_GET['q'] variable to the proper normal path. |
| drupal_is_front_page | Check if the current page is the front page. |
| drupal_lookup_path | Given an alias, return its Drupal system URL if one exists. Given a Drupal system URL return one of its aliases if such a one exists. Otherwise, return FALSE. |
| drupal_set_title | Set the title of the current page, for display on the page and in the title bar. |