protected function PrerenderList::defineOptions in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/modules/views/src/Plugin/views/field/PrerenderList.php \Drupal\views\Plugin\views\field\PrerenderList::defineOptions()
Information about options for all kinds of purposes will be held here.
'option_name' => array(
- 'default' => default value,
- 'contains' => (optional) array of items this contains, with its own
defaults, etc. If contains is set, the default will be ignored and
assumed to be array().
),
Return value
array Returns the options of this handler/plugin.
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 38 - Contains \Drupal\views\Plugin\views\field\PrerenderList.
Class
- PrerenderList
- Field handler to provide a list of items.
Namespace
Drupal\views\Plugin\views\fieldCode
protected function defineOptions() {
$options = parent::defineOptions();
$options['type'] = array(
'default' => 'separator',
);
$options['separator'] = array(
'default' => ', ',
);
return $options;
}