public AliasManager::cacheClear($source = NULL)
Clear internal caches in alias manager.
Parameters
$source: Source path of the alias that is being inserted/updated. Can be omitted if entire cache needs to be flushed.
Overrides AliasManagerInterface::cacheClear
File
- core/lib/Drupal/Core/Path/AliasManager.php, line 254
Class
- AliasManager
- The default alias manager implementation.
Namespace
Drupal\Core\Path
Code
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | public function cacheClear( $source = NULL) { if ( $source ) { foreach ( array_keys ( $this ->lookupMap) as $lang ) { unset( $this ->lookupMap[ $lang ][ $source ]); } } else { $this ->lookupMap = array (); } $this ->noPath = array (); $this ->noAlias = array (); $this ->langcodePreloaded = array (); $this ->preloadedPathLookups = array (); $this ->cache-> delete ( $this ->cacheKey); $this ->pathAliasWhitelistRebuild( $source ); } |
Please login to continue.