protected function ContextualLinks::defineOptions in Drupal 9
Same name and namespace in other branches
- 8 core/modules/contextual/src/Plugin/views/field/ContextualLinks.php \Drupal\contextual\Plugin\views\field\ContextualLinks::defineOptions()
- 10 core/modules/contextual/src/Plugin/views/field/ContextualLinks.php \Drupal\contextual\Plugin\views\field\ContextualLinks::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
File
- core/
modules/ contextual/ src/ Plugin/ views/ field/ ContextualLinks.php, line 35
Class
- ContextualLinks
- Provides a handler that adds contextual links.
Namespace
Drupal\contextual\Plugin\views\fieldCode
protected function defineOptions() {
$options = parent::defineOptions();
$options['fields'] = [
'default' => [],
];
$options['destination'] = [
'default' => 1,
];
return $options;
}