function TestFieldDynamicDependenciesWidget::settingsForm

File

core/modules/field/tests/modules/field_dynamic_dependencies_test/src/Plugin/Field/FieldWidget/TestFieldDynamicDependenciesWidget.php, line 37

Class

TestFieldDynamicDependenciesWidget
Plugin implementation of the 'test_field_dynamic_dependencies' widget.

Namespace

Drupal\field_dynamic_dependencies_test\Plugin\Field\FieldWidget

Code

public function settingsForm(array $form, FormStateInterface $form_state) {
  $element['dependent_module'] = [
    '#title' => $this->t('Module'),
    '#type' => 'textfield',
    '#default_value' => $this->getSetting('dependent_module'),
  ];
  return $element;
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.