You are here

public function AliasManagerInterface::getAliasByPath in Drupal 9

Same name and namespace in other branches
  1. 10 core/modules/path_alias/src/AliasManagerInterface.php \Drupal\path_alias\AliasManagerInterface::getAliasByPath()

Given a path, return the alias.

Parameters

string $path: A path.

string $langcode: An optional language code to look up the path in.

Return value

string An alias that represents the path, or path if no alias was found.

Throws

\InvalidArgumentException Thrown when the path does not start with a slash.

2 methods override AliasManagerInterface::getAliasByPath()
AliasManager::getAliasByPath in core/modules/path_alias/src/AliasManager.php
Given a path, return the alias.
MockAliasManager::getAliasByPath in core/modules/system/src/Tests/Routing/MockAliasManager.php

File

core/modules/path_alias/src/AliasManagerInterface.php, line 42

Class

AliasManagerInterface
Find an alias for a path and vice versa.

Namespace

Drupal\path_alias

Code

public function getAliasByPath($path, $langcode = NULL);