You are here

protected function AliasWhitelist::loadMenuPathRoots in Drupal 8

Loads menu path roots to prepopulate cache.

2 calls to AliasWhitelist::loadMenuPathRoots()
AliasWhitelist::clear in core/lib/Drupal/Core/Path/AliasWhitelist.php
Clears the collected cache entry.
AliasWhitelist::lazyLoadCache in core/lib/Drupal/Core/Path/AliasWhitelist.php
Loads the cache if not already done.

File

core/lib/Drupal/Core/Path/AliasWhitelist.php, line 96

Class

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

Namespace

Drupal\Core\Path

Code

protected function loadMenuPathRoots() {
  if ($roots = $this->state
    ->get('router.path_roots')) {
    foreach ($roots as $root) {
      $this->storage[$root] = NULL;
      $this
        ->persist($root);
    }
  }
}