You are here

protected function StringListField::defineOptions in Drupal 10

Same name and namespace in other branches
  1. 8 core/modules/options/src/Plugin/views/argument/StringListField.php \Drupal\options\Plugin\views\argument\StringListField::defineOptions()
  2. 9 core/modules/options/src/Plugin/views/argument/StringListField.php \Drupal\options\Plugin\views\argument\StringListField::defineOptions()

File

core/modules/options/src/Plugin/views/argument/StringListField.php, line 43

Class

StringListField
Argument handler for list field to show the human readable name in summary.

Namespace

Drupal\options\Plugin\views\argument

Code

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