You are here

public function PathValidatorInterface::getUrlIfValid in Drupal 10

Same name and namespace in other branches
  1. 8 core/lib/Drupal/Core/Path/PathValidatorInterface.php \Drupal\Core\Path\PathValidatorInterface::getUrlIfValid()
  2. 9 core/lib/Drupal/Core/Path/PathValidatorInterface.php \Drupal\Core\Path\PathValidatorInterface::getUrlIfValid()

Returns a URL object, if the path is valid and accessible.

Parameters

string $path: The path to check.

Return value

\Drupal\Core\Url|false The url object, or FALSE if the path is not valid.

File

core/lib/Drupal/Core/Path/PathValidatorInterface.php, line 19

Class

PathValidatorInterface
Provides an interface for url path validators.

Namespace

Drupal\Core\Path

Code

public function getUrlIfValid($path);