public function PathValidator::getUrlIfValid in Drupal 9
Same name and namespace in other branches
- 8 core/lib/Drupal/Core/Path/PathValidator.php \Drupal\Core\Path\PathValidator::getUrlIfValid()
- 10 core/lib/Drupal/Core/Path/PathValidator.php \Drupal\Core\Path\PathValidator::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.
Overrides PathValidatorInterface::getUrlIfValid
1 call to PathValidator::getUrlIfValid()
- PathValidator::isValid in core/
lib/ Drupal/ Core/ Path/ PathValidator.php - Checks if the URL path is valid and accessible by the current user.
File
- core/
lib/ Drupal/ Core/ Path/ PathValidator.php, line 81
Class
- PathValidator
- Provides a default path validator and access checker.
Namespace
Drupal\Core\PathCode
public function getUrlIfValid($path) {
return $this
->getUrl($path, TRUE);
}