Skip to content
Snippets Groups Projects
Commit 80b91c5b authored by Justin Toupin's avatar Justin Toupin
Browse files

Added test module for testing entity contraints with Layout Paragraphs.

parent c5b4b187
No related branches found
No related tags found
No related merge requests found
name: Layout Paragraphs Entity Validator Test
description: Helps test custom entity validators on paragraphs
package: Testing
type: module
core_version_requirement: ^9.1 || ^10
<?php
/**
* Implements hook_entity_type_alter().
*
* @param array $entity_types
*/
function layout_paragraphs_entity_validator_test_entity_type_alter(array &$entity_types) {
// Add validation constraint to the paragraph entity
$entity_types['paragraph']->addConstraint('LayoutParagraphsTestConstraint');
}
<?php
namespace Drupal\layout_paragraphs_entity_validator_test\Plugin\Validation\Constraint;
use Symfony\Component\Validator\Constraint;
/**
* Checks that the submitted value is a unique integer.
*
* @Constraint(
* id = "LayoutParagraphsTestConstraint",
* label = @Translation("Layout Paragraphs Test Constraint", context = "Validation"),
* type = "string"
* )
*/
class LayoutParagraphsTestConstraint extends Constraint {
public $message = 'Failed Layout Paragraphs test validation.';
}
<?php
namespace Drupal\layout_paragraphs_entity_validator_test\Plugin\Validation\Constraint;
use Symfony\Component\Validator\Constraint;
use Symfony\Component\Validator\ConstraintValidator;
/**
* Validates the TestConstraint constraint.
*/
class LayoutParagraphsTestConstraintValidator extends ConstraintValidator {
/**
* {@inheritdoc}
*/
public function validate($value, Constraint $constraint) {
$this->context->addViolation($constraint->message);
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment