protected function AliasWhitelist::loadMenuPathRoots in Drupal 9
Loads menu path roots to prepopulate cache.
2 calls to AliasWhitelist::loadMenuPathRoots()
- AliasWhitelist::clear in core/
modules/ path_alias/ src/ AliasWhitelist.php - Clears the collected cache entry.
- AliasWhitelist::lazyLoadCache in core/
modules/ path_alias/ src/ AliasWhitelist.php - Loads the cache if not already done.
File
- core/
modules/ path_alias/ src/ AliasWhitelist.php, line 71
Class
- AliasWhitelist
- Extends CacheCollector to build the path alias whitelist over time.
Namespace
Drupal\path_aliasCode
protected function loadMenuPathRoots() {
if ($roots = $this->state
->get('router.path_roots')) {
foreach ($roots as $root) {
$this->storage[$root] = NULL;
$this
->persist($root);
}
}
}