You are here

EntityTestEntityLevelValidator.php in Zircon Profile 8

File

core/modules/system/tests/modules/entity_test/src/Plugin/Validation/Constraint/EntityTestEntityLevelValidator.php
View source
<?php

/**
 * @file
 * Contains \Drupal\entity_test\Plugin\Validation\Constraint\EntityTestEntityLevelValidator.
 */
namespace Drupal\entity_test\Plugin\Validation\Constraint;

use Symfony\Component\Validator\Constraint;
use Symfony\Component\Validator\ConstraintValidator;

/**
 * Constraint validator for the EntityTestEntityLevel constraint.
 */
class EntityTestEntityLevelValidator extends ConstraintValidator {

  /**
   * Validator 2.5 and upwards compatible execution context.
   *
   * @var \Symfony\Component\Validator\Context\ExecutionContextInterface
   */
  protected $context;

  /**
   * {@inheritdoc}
   */
  public function validate($value, Constraint $constraint) {
    if ($value->name->value === 'entity-level-violation') {
      $this->context
        ->buildViolation($constraint->message)
        ->addViolation();
    }
  }

}

Classes

Namesort descending Description
EntityTestEntityLevelValidator Constraint validator for the EntityTestEntityLevel constraint.