public function SelectWidget::defaultConfiguration in Typed Data API enhancements 8
Gets default configuration for this plugin.
Return value
array An associative array with the default configuration.
Overrides FormWidgetBase::defaultConfiguration
File
- src/Plugin/ TypedDataFormWidget/ SelectWidget.php, line 29 
Class
- SelectWidget
- Plugin implementation of the 'select' widget.
Namespace
Drupal\typed_data\Plugin\TypedDataFormWidgetCode
public function defaultConfiguration() {
  return parent::defaultConfiguration() + [
    'label' => NULL,
    'description' => NULL,
    'empty_option' => NULL,
  ];
}