You are here

public function MockAliasManager::getAliasByPath in Drupal 9

Same name and namespace in other branches
  1. 8 core/modules/system/src/Tests/Routing/MockAliasManager.php \Drupal\system\Tests\Routing\MockAliasManager::getAliasByPath()

Parameters

$path:

null $langcode:

Overrides AliasManagerInterface::getAliasByPath

File

core/modules/system/src/Tests/Routing/MockAliasManager.php, line 79

Class

MockAliasManager
An easily configurable mock alias manager.

Namespace

Drupal\system\Tests\Routing

Code

public function getAliasByPath($path, $langcode = NULL) {
  if ($path[0] !== '/') {
    throw new \InvalidArgumentException(sprintf('Source path %s has to start with a slash.', $path));
  }
  $langcode = $langcode ?: $this->defaultLanguage;
  $this->lookedUp[$path] = 1;
  return $this->aliases[$path][$langcode];
}