function DisplayExtenderTest::optionsSummary

Same name and namespace in other branches
  1. 8.9.x core/modules/views/tests/modules/views_test_data/src/Plugin/views/display_extender/DisplayExtenderTest.php \Drupal\views_test_data\Plugin\views\display_extender\DisplayExtenderTest::optionsSummary()
  2. 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::optionsSummary()
  3. 11.x core/modules/views/tests/modules/views_test_data/src/Plugin/views/display_extender/DisplayExtenderTest.php \Drupal\views_test_data\Plugin\views\display_extender\DisplayExtenderTest::optionsSummary()

Overrides DisplayExtenderPluginBase::optionsSummary

File

core/modules/views/tests/modules/views_test_data/src/Plugin/views/display_extender/DisplayExtenderTest.php, line 39

Class

DisplayExtenderTest
Defines a display extender test plugin.

Namespace

Drupal\views_test_data\Plugin\views\display_extender

Code

public function optionsSummary(&$categories, &$options) {
    parent::optionsSummary($categories, $options);
    $categories['display_extender_test'] = [
        'title' => $this->t('Display extender test settings'),
        'column' => 'second',
        'build' => [
            '#weight' => -100,
        ],
    ];
    $options['test_extender_test_option'] = [
        'category' => 'display_extender_test',
        'title' => $this->t('Test option'),
        'value' => views_ui_truncate($this->options['test_extender_test_option'], 24),
    ];
}

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