function AliasWhitelist::loadMenuPathRoots
Same name in other branches
- 9 core/modules/path_alias/src/AliasWhitelist.php \Drupal\path_alias\AliasWhitelist::loadMenuPathRoots()
- 10 core/modules/path_alias/src/AliasWhitelist.php \Drupal\path_alias\AliasWhitelist::loadMenuPathRoots()
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\PathCode
protected function loadMenuPathRoots() {
if ($roots = $this->state
->get('router.path_roots')) {
foreach ($roots as $root) {
$this->storage[$root] = NULL;
$this->persist($root);
}
}
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.