PathValidator::isValid

public PathValidator::isValid($path)

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 73

Class

PathValidator
Provides a default path validator and access checker.

Namespace

Drupal\Core\Path

Code

public function isValid($path) {
  return (bool) $this->getUrlIfValid($path);
}
doc_Drupal
2016-10-29 09:33:35
Comments
Leave a Comment

Please login to continue.