public function SelectionDisplayBase::__construct in Entity Browser 8
Same name and namespace in other branches
- 8.2 src/SelectionDisplayBase.php \Drupal\entity_browser\SelectionDisplayBase::__construct()
Constructs widget plugin.
Parameters
array $configuration: A configuration array containing information about the plugin instance.
string $plugin_id: The plugin_id for the plugin instance.
mixed $plugin_definition: The plugin implementation definition.
\Symfony\Component\EventDispatcher\EventDispatcherInterface $event_dispatcher: Event dispatcher service.
\Drupal\Core\Entity\EntityTypeManagerInterface $entity_type_manager: The entity manager type service.
Overrides PluginBase::__construct
1 call to SelectionDisplayBase::__construct()
- MultiStepDisplay::__construct in src/
Plugin/ EntityBrowser/ SelectionDisplay/ MultiStepDisplay.php - Constructs widget plugin.
1 method overrides SelectionDisplayBase::__construct()
- MultiStepDisplay::__construct in src/
Plugin/ EntityBrowser/ SelectionDisplay/ MultiStepDisplay.php - Constructs widget plugin.
File
- src/
SelectionDisplayBase.php, line 58
Class
- SelectionDisplayBase
- Base implementation for selection display plugins.
Namespace
Drupal\entity_browserCode
public function __construct(array $configuration, $plugin_id, $plugin_definition, EventDispatcherInterface $event_dispatcher, EntityTypeManagerInterface $entity_type_manager) {
parent::__construct($configuration, $plugin_id, $plugin_definition);
$this->eventDispatcher = $event_dispatcher;
$this->entityTypeManager = $entity_type_manager;
$this
->setConfiguration($configuration);
}