You are here

public function AliasWhitelist::clear in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 core/lib/Drupal/Core/Path/AliasWhitelist.php \Drupal\Core\Path\AliasWhitelist::clear()

Clears the collected cache entry.

Overrides CacheCollector::clear

File

core/lib/Drupal/Core/Path/AliasWhitelist.php, line 120
Contains \Drupal\Core\Path\AliasWhitelist.

Class

AliasWhitelist
Extends CacheCollector to build the path alias whitelist over time.

Namespace

Drupal\Core\Path

Code

public function clear() {
  parent::clear();
  $this
    ->loadMenuPathRoots();
}