You are here

public function MockAliasManager::getAliasByPath in Drupal 10

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

File

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

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];
}