function PrerenderList::defineOptions
Same name in other branches
- 9 core/modules/views/src/Plugin/views/field/PrerenderList.php \Drupal\views\Plugin\views\field\PrerenderList::defineOptions()
- 10 core/modules/views/src/Plugin/views/field/PrerenderList.php \Drupal\views\Plugin\views\field\PrerenderList::defineOptions()
- 11.x core/modules/views/src/Plugin/views/field/PrerenderList.php \Drupal\views\Plugin\views\field\PrerenderList::defineOptions()
Overrides FieldPluginBase::defineOptions
1 call to PrerenderList::defineOptions()
- TaxonomyIndexTid::defineOptions in core/
modules/ taxonomy/ src/ Plugin/ views/ field/ TaxonomyIndexTid.php - Information about options for all kinds of purposes will be held here.
1 method overrides PrerenderList::defineOptions()
- TaxonomyIndexTid::defineOptions in core/
modules/ taxonomy/ src/ Plugin/ views/ field/ TaxonomyIndexTid.php - Information about options for all kinds of purposes will be held here.
File
-
core/
modules/ views/ src/ Plugin/ views/ field/ PrerenderList.php, line 33
Class
- PrerenderList
- Field handler to provide a list of items.
Namespace
Drupal\views\Plugin\views\fieldCode
protected function defineOptions() {
$options = parent::defineOptions();
$options['type'] = [
'default' => 'separator',
];
$options['separator'] = [
'default' => ', ',
];
return $options;
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.