class ValidPathConstraint in Drupal 8
Same name and namespace in other branches
- 9 core/lib/Drupal/Core/Path/Plugin/Validation/Constraint/ValidPathConstraint.php \Drupal\Core\Path\Plugin\Validation\Constraint\ValidPathConstraint
Validation constraint for valid system paths.
Plugin annotation
@Constraint(
id = "ValidPath",
label = @Translation("Valid path.", context = "Validation"),
)
Hierarchy
- class \Drupal\Core\Path\Plugin\Validation\Constraint\ValidPathConstraint extends \Symfony\Component\Validator\Constraint
Expanded class hierarchy of ValidPathConstraint
File
- core/
lib/ Drupal/ Core/ Path/ Plugin/ Validation/ Constraint/ ValidPathConstraint.php, line 15
Namespace
Drupal\Core\Path\Plugin\Validation\ConstraintView source
class ValidPathConstraint extends Constraint {
/**
* The default violation message.
*
* @var string
*/
public $message = "Either the path '%link_path' is invalid or you do not have access to it.";
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
ValidPathConstraint:: |
public | property | The default violation message. |