You are here

public function MultiStepDisplay::defaultConfiguration in Entity Browser 8.2

Same name and namespace in other branches
  1. 8 src/Plugin/EntityBrowser/SelectionDisplay/MultiStepDisplay.php \Drupal\entity_browser\Plugin\EntityBrowser\SelectionDisplay\MultiStepDisplay::defaultConfiguration()

Gets default configuration for this plugin.

Return value

array An associative array with the default configuration.

Overrides SelectionDisplayBase::defaultConfiguration

File

src/Plugin/EntityBrowser/SelectionDisplay/MultiStepDisplay.php, line 74

Class

MultiStepDisplay
Show current selection and delivers selected entities.

Namespace

Drupal\entity_browser\Plugin\EntityBrowser\SelectionDisplay

Code

public function defaultConfiguration() {
  return [
    'entity_type' => 'node',
    'display' => 'label',
    'display_settings' => [],
    'select_text' => 'Use selected',
    'selection_hidden' => 0,
  ] + parent::defaultConfiguration();
}