function TestFieldWidget::settingsForm
Overrides WidgetBase::settingsForm
File
- 
              core/
modules/ field/ tests/ modules/ field_test/ src/ Plugin/ Field/ FieldWidget/ TestFieldWidget.php, line 44  
Class
- TestFieldWidget
 - Plugin implementation of the 'test_field_widget' widget.
 
Namespace
Drupal\field_test\Plugin\Field\FieldWidgetCode
public function settingsForm(array $form, FormStateInterface $form_state) {
  $element['test_widget_setting'] = [
    '#type' => 'textfield',
    '#title' => $this->t('Field test field widget setting'),
    '#description' => $this->t('A dummy form element to simulate field widget setting.'),
    '#default_value' => $this->getSetting('test_widget_setting'),
    '#required' => FALSE,
  ];
  return $element;
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.