drupal_clear_path_cache

  1. drupal
    1. 4.7
    2. 5
    3. 6 common.inc
    4. 7 path.inc
Versions
4.7 – 6 drupal_clear_path_cache()
7 drupal_clear_path_cache($source = NULL)

Reset the static variable which holds the aliases mapped for this request.

▾ 1 function calls drupal_clear_path_cache()

path_set_alias in modules/path.module
Set an aliased path for a given Drupal path, preventing duplicates.

Code

includes/common.inc, line 125

<?php
function drupal_clear_path_cache() {
  drupal_lookup_path('wipe');
}
?>