function AliasStorage::lookupPathAlias

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

core/lib/Drupal/Core/Path/AliasStorage.php, line 224

Class

AliasStorage
Provides a class for CRUD operations on path aliases.

Namespace

Drupal\Core\Path

Code

public function lookupPathAlias($path, $langcode) {
  // See the queries above. Use LIKE for case-insensitive matching.
  $select = $this->getBaseQuery()
    ->fields('base_table', [
    'alias',
  ])
    ->condition('base_table.path', $this->connection
    ->escapeLike($path), 'LIKE');
  $this->addLanguageFallback($select, $langcode);
  $select->orderBy('base_table.id', 'DESC');
  return $select->execute()
    ->fetchField();
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.