You are here

public function EntityBundle::__construct in Drupal 10

Same name in this branch
  1. 10 core/lib/Drupal/Core/Entity/Plugin/Condition/EntityBundle.php \Drupal\Core\Entity\Plugin\Condition\EntityBundle::__construct()
  2. 10 core/lib/Drupal/Core/Entity/Plugin/Condition/Deriver/EntityBundle.php \Drupal\Core\Entity\Plugin\Condition\Deriver\EntityBundle::__construct()
Same name and namespace in other branches
  1. 9 core/lib/Drupal/Core/Entity/Plugin/Condition/Deriver/EntityBundle.php \Drupal\Core\Entity\Plugin\Condition\Deriver\EntityBundle::__construct()

Constructs a new EntityBundle.

Parameters

\Drupal\Core\Entity\EntityTypeManagerInterface $entity_type_manager: The entity type manager.

File

core/lib/Drupal/Core/Entity/Plugin/Condition/Deriver/EntityBundle.php, line 29

Class

EntityBundle
Deriver that creates a condition for each entity type with bundles.

Namespace

Drupal\Core\Entity\Plugin\Condition\Deriver

Code

public function __construct(EntityTypeManagerInterface $entity_type_manager) {
  $this->entityTypeManager = $entity_type_manager;
}