protected function SelectForm::defineOptions in Entity Browser 8
Same name and namespace in other branches
- 8.2 src/Plugin/views/field/SelectForm.php \Drupal\entity_browser\Plugin\views\field\SelectForm::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
- src/
Plugin/ views/ field/ SelectForm.php, line 71
Class
- SelectForm
- Defines a bulk operation form element that works with entity browser.
Namespace
Drupal\entity_browser\Plugin\views\fieldCode
protected function defineOptions() {
$options = parent::defineOptions();
$options['use_field_cardinality'] = [
'default' => FALSE,
];
return $options;
}