public function DisplayExtenderTest::buildOptionsForm in Drupal 9
Same name and namespace in other branches
- 8 core/modules/views/tests/modules/views_test_data/src/Plugin/views/display_extender/DisplayExtenderTest.php \Drupal\views_test_data\Plugin\views\display_extender\DisplayExtenderTest::buildOptionsForm()
- 10 core/modules/views/tests/modules/views_test_data/src/Plugin/views/display_extender/DisplayExtenderTest.php \Drupal\views_test_data\Plugin\views\display_extender\DisplayExtenderTest::buildOptionsForm()
Provide a form to edit options for this plugin.
Overrides DisplayExtenderPluginBase::buildOptionsForm
File
- core/modules/ views/ tests/ modules/ views_test_data/ src/ Plugin/ views/ display_extender/ DisplayExtenderTest.php, line 60 
Class
- DisplayExtenderTest
- Defines a display extender test plugin.
Namespace
Drupal\views_test_data\Plugin\views\display_extenderCode
public function buildOptionsForm(&$form, FormStateInterface $form_state) {
  switch ($form_state
    ->get('section')) {
    case 'test_extender_test_option':
      $form['#title'] .= $this
        ->t('Test option');
      $form['test_extender_test_option'] = [
        '#title' => $this
          ->t('Test option'),
        '#type' => 'textfield',
        '#description' => $this
          ->t('This is a textfield for test_option.'),
        '#default_value' => $this->options['test_extender_test_option'],
      ];
  }
}