public function MongodbPathAliasStorage::lookupPathAlias in MongoDB 8
Returns an alias of Drupal system URL.
The default implementation performs case-insensitive matching on the 'source' and 'alias' strings.
Parameters
string $path: The path to investigate for corresponding path aliases.
string $langcode: Language code to search the path with. If there's no path defined for that language it will search paths without language.
Return value
string|false A path alias, or FALSE if no path was found.
Overrides AliasStorageInterface::lookupPathAlias
File
- src/
MongodbPathAliasStorage.php, line 132 - Contains Drupal\mongodb\Path.
Class
- MongodbPathAliasStorage
- Provides a class for CRUD operations on path aliases in MongoDB.
Namespace
Drupal\mongodbCode
public function lookupPathAlias($path, $langcode) {
$aliases = $this
->mongodbAliasQuery([
'source' => $path,
], $langcode, 1);
return reset($aliases);
}