You are here

public function DisplayTest::buildOptionsForm in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/views/tests/modules/views_test_data/src/Plugin/views/display/DisplayTest.php \Drupal\views_test_data\Plugin\views\display\DisplayTest::buildOptionsForm()
  2. 10 core/modules/views/tests/modules/views_test_data/src/Plugin/views/display/DisplayTest.php \Drupal\views_test_data\Plugin\views\display\DisplayTest::buildOptionsForm()

Provide a form to edit options for this plugin.

Overrides DisplayPluginBase::buildOptionsForm

File

core/modules/views/tests/modules/views_test_data/src/Plugin/views/display/DisplayTest.php, line 73

Class

DisplayTest
Defines a Display test plugin.

Namespace

Drupal\views_test_data\Plugin\views\display

Code

public function buildOptionsForm(&$form, FormStateInterface $form_state) {
  parent::buildOptionsForm($form, $form_state);
  switch ($form_state
    ->get('section')) {
    case 'test_option':
      $form['#title'] .= $this
        ->t('Test option');
      $form['test_option'] = [
        '#title' => $this
          ->t('Test option'),
        '#type' => 'textfield',
        '#description' => $this
          ->t('This is a textfield for test_option.'),
        '#default_value' => $this
          ->getOption('test_option'),
      ];
      break;
  }
}