UserMultipleCancelConfirm::__construct

public UserMultipleCancelConfirm::__construct(PrivateTempStoreFactory $temp_store_factory, UserStorageInterface $user_storage, EntityManagerInterface $entity_manager)

Constructs a new UserMultipleCancelConfirm.

Parameters

\Drupal\user\PrivateTempStoreFactory $temp_store_factory: The temp store factory.

\Drupal\user\UserStorageInterface $user_storage: The user storage.

\Drupal\Core\Entity\EntityManagerInterface $entity_manager: The entity manager.

File

core/modules/user/src/Form/UserMultipleCancelConfirm.php, line 49

Class

UserMultipleCancelConfirm
Provides a confirmation form for cancelling multiple user accounts.

Namespace

Drupal\user\Form

Code

public function __construct(PrivateTempStoreFactory $temp_store_factory, UserStorageInterface $user_storage, EntityManagerInterface $entity_manager) {
  $this->tempStoreFactory = $temp_store_factory;
  $this->userStorage = $user_storage;
  $this->entityManager = $entity_manager;
}
doc_Drupal
2016-10-29 09:52:47
Comments
Leave a Comment

Please login to continue.