public function InlineParagraphsWidget::settingsForm in Paragraphs Sets 8
Returns a form to configure settings for the widget.
Invoked from \Drupal\field_ui\Form\EntityDisplayFormBase to allow administrators to configure the widget. The field_ui module takes care of handling submitted form values.
Parameters
array $form: The form where the settings form is being included in.
\Drupal\Core\Form\FormStateInterface $form_state: The current state of the form.
Return value
array The form definition for the widget settings.
Overrides InlineParagraphsWidget::settingsForm
File
- src/
Plugin/ Field/ FieldWidget/ InlineParagraphsWidget.php, line 31
Class
- InlineParagraphsWidget
- Plugin definition of the 'entity_reference paragraphs sets' widget.
Namespace
Drupal\paragraphs_sets\Plugin\Field\FieldWidgetCode
public function settingsForm(array $form, FormStateInterface $form_state) {
$elements = parent::settingsForm($form, $form_state);
$options = [];
foreach (static::getSets() as $key => $set) {
$options[$key] = $set['label'];
}
$elements['default_paragraph_type']['#title'] = $this
->t('Default paragraph set');
$elements['default_paragraph_type']['#description'] = $this
->t('When creating a new host entity, the selected set of paragraphs are added.');
$elements['default_paragraph_type']['#options'] = $options;
return $elements;
}