class EntityBundleExistsConstraint

Checks if a bundle exists on a certain content entity type.

This differs from the `Bundle` constraint in that checks that the validated value is the *name of a bundle* of a particular entity type.

Attributes

#[Constraint(id: 'EntityBundleExists', label: new TranslatableMarkup('Entity bundle exists', [], [ 'context' => 'Validation', ]), type: 'entity')]

Hierarchy

Expanded class hierarchy of EntityBundleExistsConstraint

File

core/lib/Drupal/Core/Validation/Plugin/Validation/Constraint/EntityBundleExistsConstraint.php, line 17

Namespace

Drupal\Core\Validation\Plugin\Validation\Constraint
View source
class EntityBundleExistsConstraint extends SymfonyConstraint {
  
  /**
   * The error message if validation fails.
   *
   * @var string
   */
  public $message = "The '@bundle' bundle does not exist on the '@entity_type_id' entity type.";
  
  /**
   * The entity type ID which should have the given bundle.
   *
   * This can contain variable values (e.g., `%parent`) that will be replaced.
   *
   * @var string
   *
   * @see \Drupal\Core\Config\Schema\TypeResolver::replaceVariable()
   */
  public string $entityTypeId;
  
  /**
   * {@inheritdoc}
   */
  public function getDefaultOption() : ?string {
    return 'entityTypeId';
  }
  
  /**
   * {@inheritdoc}
   */
  public function getRequiredOptions() : array {
    return [
      'entityTypeId',
    ];
  }

}

Members

Title Sort descending Modifiers Object type Summary
EntityBundleExistsConstraint::$entityTypeId public property The entity type ID which should have the given bundle.
EntityBundleExistsConstraint::$message public property The error message if validation fails.
EntityBundleExistsConstraint::getDefaultOption public function
EntityBundleExistsConstraint::getRequiredOptions public function

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.