public function ParagraphEntityForm::buildConfigurationForm in Paragraphs Inline Entity Form 8
Same name and namespace in other branches
- 2.x src/Plugin/EntityBrowser/Widget/ParagraphEntityForm.php \Drupal\paragraphs_inline_entity_form\Plugin\EntityBrowser\Widget\ParagraphEntityForm::buildConfigurationForm()
- 2.0.x src/Plugin/EntityBrowser/Widget/ParagraphEntityForm.php \Drupal\paragraphs_inline_entity_form\Plugin\EntityBrowser\Widget\ParagraphEntityForm::buildConfigurationForm()
File
- src/
Plugin/ EntityBrowser/ Widget/ ParagraphEntityForm.php, line 34
Class
- ParagraphEntityForm
- A wrapper for EntityForm to provide a two step form where on the first step the user can select the Entity type and on the second step, to create content
Namespace
Drupal\paragraphs_inline_entity_form\Plugin\EntityBrowser\WidgetCode
public function buildConfigurationForm(array $form, FormStateInterface $form_state) {
$form = parent::buildConfigurationForm($form, $form_state);
$form['bundle'] = [
'#type' => 'select',
'#title' => $this
->t('Bundle'),
'#options' => [
'Paragraph Selector',
],
];
return $form;
}