public function PathValidator::getUrlIfValid

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

public function getUrlIfValid($path) {
  return $this->getUrl($path, TRUE);
}

© 2001–2016 by the original authors
Licensed under the GNU General Public License, version 2 and later.
Drupal is a registered trademark of Dries Buytaert.
https://api.drupal.org/api/drupal/core!lib!Drupal!Core!Path!PathValidator.php/function/PathValidator::getUrlIfValid/8.1.x