public function PathValidator::getUrlIfValidWithoutAccessCheck in Drupal 9
Same name and namespace in other branches
- 8 core/lib/Drupal/Core/Path/PathValidator.php \Drupal\Core\Path\PathValidator::getUrlIfValidWithoutAccessCheck()
- 10 core/lib/Drupal/Core/Path/PathValidator.php \Drupal\Core\Path\PathValidator::getUrlIfValidWithoutAccessCheck()
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.
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::getUrlIfValidWithoutAccessCheck
File
- core/
lib/ Drupal/ Core/ Path/ PathValidator.php, line 88
Class
- PathValidator
- Provides a default path validator and access checker.
Namespace
Drupal\Core\PathCode
public function getUrlIfValidWithoutAccessCheck($path) {
return $this
->getUrl($path, FALSE);
}