function ArgumentValidatorTest::defineOptions

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

Overrides ArgumentValidatorPluginBase::defineOptions

File

core/modules/views/tests/modules/views_test_data/src/Plugin/views/argument_validator/ArgumentValidatorTest.php, line 29

Class

ArgumentValidatorTest
Defines a argument validator test plugin.

Namespace

Drupal\views_test_data\Plugin\views\argument_validator

Code

protected function defineOptions() {
    $options = parent::defineOptions();
    $options['test_value'] = [
        'default' => '',
    ];
    return $options;
}

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