You are here

public function PathValidatorInterface::getUrlIfValidWithoutAccessCheck in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/lib/Drupal/Core/Path/PathValidatorInterface.php \Drupal\Core\Path\PathValidatorInterface::getUrlIfValidWithoutAccessCheck()

Returns an 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.

1 method overrides PathValidatorInterface::getUrlIfValidWithoutAccessCheck()
PathValidator::getUrlIfValidWithoutAccessCheck in core/lib/Drupal/Core/Path/PathValidator.php
Returns an URL object, if the path is valid.

File

core/lib/Drupal/Core/Path/PathValidatorInterface.php, line 38
Contains \Drupal\Core\Path\PathValidatorInterface.

Class

PathValidatorInterface
Provides an interface for url path validators.

Namespace

Drupal\Core\Path

Code

public function getUrlIfValidWithoutAccessCheck($path);