BundleConstraintValidator.php
Namespace
Drupal\Core\Entity\Plugin\Validation\ConstraintFile
- 
              core/lib/ Drupal/ Core/ Entity/ Plugin/ Validation/ Constraint/ BundleConstraintValidator.php 
View source
<?php
namespace Drupal\Core\Entity\Plugin\Validation\Constraint;
use Symfony\Component\Validator\Constraint;
use Symfony\Component\Validator\ConstraintValidator;
/**
 * Validates the Bundle constraint.
 */
class BundleConstraintValidator extends ConstraintValidator {
  
  /**
   * {@inheritdoc}
   */
  public function validate($entity, Constraint $constraint) {
    if (!isset($entity)) {
      return;
    }
    if (!in_array($entity->bundle(), $constraint->getBundleOption())) {
      $this->context
        ->addViolation($constraint->message, [
        '%bundle' => implode(', ', $constraint->getBundleOption()),
      ]);
    }
  }
}Classes
| Title | Deprecated | Summary | 
|---|---|---|
| BundleConstraintValidator | Validates the Bundle constraint. | 
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.
