You are here

public function DateRecurModularOscarWidget::settingsForm in Recurring Date Field Modular Widgets 8

Same name and namespace in other branches
  1. 3.x src/Plugin/Field/FieldWidget/DateRecurModularOscarWidget.php \Drupal\date_recur_modular\Plugin\Field\FieldWidget\DateRecurModularOscarWidget::settingsForm()
  2. 2.x src/Plugin/Field/FieldWidget/DateRecurModularOscarWidget.php \Drupal\date_recur_modular\Plugin\Field\FieldWidget\DateRecurModularOscarWidget::settingsForm()

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 WidgetBase::settingsForm

File

src/Plugin/Field/FieldWidget/DateRecurModularOscarWidget.php, line 103

Class

DateRecurModularOscarWidget
Date recur opening hours widget.

Namespace

Drupal\date_recur_modular\Plugin\Field\FieldWidget

Code

public function settingsForm(array $form, FormStateInterface $form_state) : array {
  $elements = parent::settingsForm($form, $form_state);
  $elements['all_day_toggle'] = [
    '#type' => 'checkbox',
    '#title' => $this
      ->t('Enable all-day toggle'),
    '#description' => $this
      ->t('Whether to enable the all-day/between toggle.'),
    '#default_value' => $this
      ->getSetting('all_day_toggle'),
  ];
  return $elements;
}