public PathValidatorInterface::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.
Parameters
string $path: The path to check.
Return value
\Drupal\Core\Url|false The url object, or FALSE if the path is not valid.
File
- core/lib/Drupal/Core/Path/PathValidatorInterface.php, line 33
Class
- PathValidatorInterface
- Provides an interface for url path validators.
Namespace
Drupal\Core\Path
Code
public function getUrlIfValidWithoutAccessCheck($path);
Please login to continue.