function QueryTest::buildOptionsForm

Same name and namespace in other branches
  1. 9 core/modules/views/tests/modules/views_test_data/src/Plugin/views/query/QueryTest.php \Drupal\views_test_data\Plugin\views\query\QueryTest::buildOptionsForm()
  2. 10 core/modules/views/tests/modules/views_test_data/src/Plugin/views/query/QueryTest.php \Drupal\views_test_data\Plugin\views\query\QueryTest::buildOptionsForm()
  3. 11.x core/modules/views/tests/modules/views_test_data/src/Plugin/views/query/QueryTest.php \Drupal\views_test_data\Plugin\views\query\QueryTest::buildOptionsForm()

Overrides PluginBase::buildOptionsForm

File

core/modules/views/tests/modules/views_test_data/src/Plugin/views/query/QueryTest.php, line 39

Class

QueryTest
Defines a query test plugin.

Namespace

Drupal\views_test_data\Plugin\views\query

Code

public function buildOptionsForm(&$form, FormStateInterface $form_state) {
    parent::buildOptionsForm($form, $form_state);
    $form['test_setting'] = [
        '#title' => $this->t('Test setting'),
        '#type' => 'textfield',
        '#default_value' => $this->options['test_setting'],
    ];
}

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