public function PathValidatorInterface::getUrlIfValid in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/lib/Drupal/Core/Path/PathValidatorInterface.php \Drupal\Core\Path\PathValidatorInterface::getUrlIfValid()
Returns an 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.
1 method overrides PathValidatorInterface::getUrlIfValid()
- PathValidator::getUrlIfValid in core/
lib/ Drupal/ Core/ Path/ PathValidator.php - Returns an URL object, if the path is valid and accessible.
File
- core/
lib/ Drupal/ Core/ Path/ PathValidatorInterface.php, line 24 - Contains \Drupal\Core\Path\PathValidatorInterface.
Class
- PathValidatorInterface
- Provides an interface for url path validators.
Namespace
Drupal\Core\PathCode
public function getUrlIfValid($path);