LinkNotExistingInternalConstraintValidator.php
Same filename in other branches
- 8.9.x core/modules/link/src/Plugin/Validation/Constraint/LinkNotExistingInternalConstraintValidator.php
- 10 core/modules/link/src/Plugin/Validation/Constraint/LinkNotExistingInternalConstraintValidator.php
- 11.x core/modules/link/src/Plugin/Validation/Constraint/LinkNotExistingInternalConstraintValidator.php
Namespace
Drupal\link\Plugin\Validation\ConstraintFile
-
core/
modules/ link/ src/ Plugin/ Validation/ Constraint/ LinkNotExistingInternalConstraintValidator.php
View source
<?php
namespace Drupal\link\Plugin\Validation\Constraint;
use Symfony\Component\Routing\Exception\InvalidParameterException;
use Symfony\Component\Routing\Exception\MissingMandatoryParametersException;
use Symfony\Component\Routing\Exception\RouteNotFoundException;
use Symfony\Component\Validator\Constraint;
use Symfony\Component\Validator\ConstraintValidator;
/**
* Validates the LinkNotExistingInternal constraint.
*/
class LinkNotExistingInternalConstraintValidator extends ConstraintValidator {
/**
* {@inheritdoc}
*/
public function validate($value, Constraint $constraint) {
if (isset($value)) {
try {
/** @var \Drupal\Core\Url $url */
$url = $value->getUrl();
} catch (\InvalidArgumentException $e) {
return;
}
if ($url->isRouted()) {
$allowed = TRUE;
try {
$url->toString(TRUE);
} catch (RouteNotFoundException $e) {
$allowed = FALSE;
} catch (InvalidParameterException $e) {
$allowed = FALSE;
} catch (MissingMandatoryParametersException $e) {
$allowed = FALSE;
}
if (!$allowed) {
$this->context
->addViolation($constraint->message, [
'@uri' => $value->uri,
]);
}
}
}
}
}
Classes
Title | Deprecated | Summary |
---|---|---|
LinkNotExistingInternalConstraintValidator | Validates the LinkNotExistingInternal constraint. |
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.