public PathValidator::getUrlIfValid($path)
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
File
- core/lib/Drupal/Core/Path/PathValidator.php, line 80
Class
- PathValidator
- Provides a default path validator and access checker.
Namespace
Drupal\Core\Path
Code
1 2 3 | public function getUrlIfValid( $path ) { return $this ->getUrl( $path , TRUE); } |
Please login to continue.