function RolesRid::__construct
Same name in other branches
- 8.9.x core/modules/user/src/Plugin/views/argument/RolesRid.php \Drupal\user\Plugin\views\argument\RolesRid::__construct()
- 10 core/modules/user/src/Plugin/views/argument/RolesRid.php \Drupal\user\Plugin\views\argument\RolesRid::__construct()
- 11.x core/modules/user/src/Plugin/views/argument/RolesRid.php \Drupal\user\Plugin\views\argument\RolesRid::__construct()
Constructs a \Drupal\user\Plugin\views\argument\RolesRid 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\EntityTypeManagerInterface $entity_type_manager: The entity type manager.
Overrides HandlerBase::__construct
File
-
core/
modules/ user/ src/ Plugin/ views/ argument/ RolesRid.php, line 37
Class
- RolesRid
- Allow role ID(s) as argument.
Namespace
Drupal\user\Plugin\views\argumentCode
public function __construct(array $configuration, $plugin_id, $plugin_definition, EntityTypeManagerInterface $entity_type_manager) {
parent::__construct($configuration, $plugin_id, $plugin_definition);
$this->roleStorage = $entity_type_manager->getStorage('user_role');
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.