You are here

public function ChangeUserRoleBase::__construct in Drupal 10

Same name and namespace in other branches
  1. 8 core/modules/user/src/Plugin/Action/ChangeUserRoleBase.php \Drupal\user\Plugin\Action\ChangeUserRoleBase::__construct()
  2. 9 core/modules/user/src/Plugin/Action/ChangeUserRoleBase.php \Drupal\user\Plugin\Action\ChangeUserRoleBase::__construct()

File

core/modules/user/src/Plugin/Action/ChangeUserRoleBase.php, line 31

Class

ChangeUserRoleBase
Provides a base class for operations to change a user's role.

Namespace

Drupal\user\Plugin\Action

Code

public function __construct(array $configuration, $plugin_id, $plugin_definition, EntityTypeInterface $entity_type) {
  parent::__construct($configuration, $plugin_id, $plugin_definition);
  $this->entityType = $entity_type;
}