function EntityBundle::buildConfigurationForm
Same name and namespace in other branches
- 11.x core/lib/Drupal/Core/Entity/Plugin/Condition/EntityBundle.php \Drupal\Core\Entity\Plugin\Condition\EntityBundle::buildConfigurationForm()
- 10 core/lib/Drupal/Core/Entity/Plugin/Condition/EntityBundle.php \Drupal\Core\Entity\Plugin\Condition\EntityBundle::buildConfigurationForm()
- 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 51
Class
- EntityBundle
- Provides the 'Entity Bundle' condition.
Namespace
Drupal\Core\Entity\Plugin\ConditionCode
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.