function EntityBundle::buildConfigurationForm

Overrides ConditionPluginBase::buildConfigurationForm

File

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

Class

EntityBundle
Provides the 'Entity Bundle' condition.

Namespace

Drupal\Core\Entity\Plugin\Condition

Code

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

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