public function ExportUserConfirm::__construct in Open Social 8
Same name and namespace in other branches
- 8.2 modules/social_features/social_user_export/src/Form/ExportUserConfirm.php \Drupal\social_user_export\Form\ExportUserConfirm::__construct()
- 8.3 modules/social_features/social_user_export/src/Form/ExportUserConfirm.php \Drupal\social_user_export\Form\ExportUserConfirm::__construct()
- 8.4 modules/social_features/social_user_export/src/Form/ExportUserConfirm.php \Drupal\social_user_export\Form\ExportUserConfirm::__construct()
Constructs a new ExportUserConfirm.
Parameters
\Drupal\user\PrivateTempStoreFactory $temp_store_factory: The temp store factory.
\Drupal\user\UserStorageInterface $user_storage: The user storage.
\Drupal\Core\Entity\EntityTypeManagerInterface $entity_manager: The entity manager.
File
- modules/
social_features/ social_user_export/ src/ Form/ ExportUserConfirm.php, line 52
Class
- ExportUserConfirm
- Class ExportUserConfirm.
Namespace
Drupal\social_user_export\FormCode
public function __construct(PrivateTempStoreFactory $temp_store_factory, UserStorageInterface $user_storage, EntityTypeManagerInterface $entity_manager) {
$this->tempStoreFactory = $temp_store_factory;
$this->userStorage = $user_storage;
$this->entityManager = $entity_manager;
}