public function PathValidator::isValid in Drupal 9
Same name and namespace in other branches
- 8 core/lib/Drupal/Core/Path/PathValidator.php \Drupal\Core\Path\PathValidator::isValid()
- 10 core/lib/Drupal/Core/Path/PathValidator.php \Drupal\Core\Path\PathValidator::isValid()
Checks if the URL path is valid and accessible by the current user.
Parameters
string $path: The path to check.
Return value
bool TRUE if the path is valid.
Overrides PathValidatorInterface::isValid
File
- core/
lib/ Drupal/ Core/ Path/ PathValidator.php, line 74
Class
- PathValidator
- Provides a default path validator and access checker.
Namespace
Drupal\Core\PathCode
public function isValid($path) {
return (bool) $this
->getUrlIfValid($path);
}