You are here

public function PathValidator::getUrlIfValidWithoutAccessCheck in Drupal 10

Same name and namespace in other branches
  1. 8 core/lib/Drupal/Core/Path/PathValidator.php \Drupal\Core\Path\PathValidator::getUrlIfValidWithoutAccessCheck()
  2. 9 core/lib/Drupal/Core/Path/PathValidator.php \Drupal\Core\Path\PathValidator::getUrlIfValidWithoutAccessCheck()

File

core/lib/Drupal/Core/Path/PathValidator.php, line 88

Class

PathValidator
Provides a default path validator and access checker.

Namespace

Drupal\Core\Path

Code

public function getUrlIfValidWithoutAccessCheck($path) {
  return $this
    ->getUrl($path, FALSE);
}