You are here

public function EntityBundle::buildConfigurationForm in Drupal 10

Same name and namespace in other branches
  1. 9 core/lib/Drupal/Core/Entity/Plugin/Condition/EntityBundle.php \Drupal\Core\Entity\Plugin\Condition\EntityBundle::buildConfigurationForm()

File

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

Class

EntityBundle
Provides the 'Entity Bundle' condition.

Namespace

Drupal\Core\Entity\Plugin\Condition

Code

public function buildConfigurationForm(array $form, FormStateInterface $form_state) {
  $bundles = $this->entityTypeBundleInfo
    ->getBundleInfo($this
    ->getDerivativeId());
  $form['bundles'] = [
    '#title' => $this->pluginDefinition['label'],
    '#type' => 'checkboxes',
    '#options' => array_combine(array_keys($bundles), array_column($bundles, 'label')),
    '#default_value' => $this->configuration['bundles'],
  ];
  return parent::buildConfigurationForm($form, $form_state);
}