public PathValidator::getUrlIfValidWithoutAccessCheck($path)
Returns a URL object, if the path is valid.
Unlike getUrlIfValid(), access check is not performed. Do not use this method if the $path is about to be presented to a user.
string $path: The path to check.
\Drupal\Core\Url|false The url object, or FALSE if the path is not valid.
Overrides PathValidatorInterface::getUrlIfValidWithoutAccessCheck
public function getUrlIfValidWithoutAccessCheck($path) { return $this->getUrl($path, FALSE); }
© 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::getUrlIfValidWithoutAccessCheck/8.1.x