You are here

protected function PrerenderList::defineOptions in Drupal 10

Same name and namespace in other branches
  1. 8 core/modules/views/src/Plugin/views/field/PrerenderList.php \Drupal\views\Plugin\views\field\PrerenderList::defineOptions()
  2. 9 core/modules/views/src/Plugin/views/field/PrerenderList.php \Drupal\views\Plugin\views\field\PrerenderList::defineOptions()
1 call to PrerenderList::defineOptions()
TaxonomyIndexTid::defineOptions in core/modules/taxonomy/src/Plugin/views/field/TaxonomyIndexTid.php
1 method overrides PrerenderList::defineOptions()
TaxonomyIndexTid::defineOptions in core/modules/taxonomy/src/Plugin/views/field/TaxonomyIndexTid.php

File

core/modules/views/src/Plugin/views/field/PrerenderList.php, line 34

Class

PrerenderList
Field handler to provide a list of items.

Namespace

Drupal\views\Plugin\views\field

Code

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