function SelectionTrait::__construct
Constructs a new selection object.
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.
\Drupal\Core\Entity\EntityManagerInterface $entity_manager: The entity manager service.
\Drupal\Core\Extension\ModuleHandlerInterface $module_handler: The module handler service.
\Drupal\Core\Session\AccountInterface $current_user: The current user.
File
-
core/
lib/ Drupal/ Core/ Entity/ EntityReferenceSelection/ SelectionTrait.php, line 54
Class
- SelectionTrait
- Provides common methods and injects services for core selection handlers.
Namespace
Drupal\Core\Entity\EntityReferenceSelectionCode
public function __construct(array $configuration, $plugin_id, $plugin_definition, EntityManagerInterface $entity_manager, ModuleHandlerInterface $module_handler, AccountInterface $current_user) {
parent::__construct($configuration, $plugin_id, $plugin_definition);
$this->entityManager = $entity_manager;
$this->moduleHandler = $module_handler;
$this->currentUser = $current_user;
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.