class Role in Workbench Email 2.x
Same name and namespace in other branches
- 8 src/Plugin/RecipientType/Role.php \Drupal\workbench_email\Plugin\RecipientType\Role
Provides a recipient type of user role.
Plugin annotation
@RecipientType(
id = "role",
title = @Translation("Role"),
description = @Translation("Send to all users with selected roles."),
settings = {
"roles" = {},
},
)
Hierarchy
- class \Drupal\Component\Plugin\PluginBase implements DerivativeInspectionInterface, PluginInspectionInterface
- class \Drupal\Core\Plugin\PluginBase uses DependencySerializationTrait, MessengerTrait, StringTranslationTrait
- class \Drupal\workbench_email\Plugin\RecipientTypeBase implements RecipientTypeInterface uses PluginWithFormsTrait
- class \Drupal\workbench_email\Plugin\RecipientType\Role implements ContainerFactoryPluginInterface
- class \Drupal\workbench_email\Plugin\RecipientTypeBase implements RecipientTypeInterface uses PluginWithFormsTrait
- class \Drupal\Core\Plugin\PluginBase uses DependencySerializationTrait, MessengerTrait, StringTranslationTrait
Expanded class hierarchy of Role
1 string reference to 'Role'
- workbench_email.schema.yml in config/
schema/ workbench_email.schema.yml - config/schema/workbench_email.schema.yml
File
- src/
Plugin/ RecipientType/ Role.php, line 27
Namespace
Drupal\workbench_email\Plugin\RecipientTypeView source
class Role extends RecipientTypeBase implements ContainerFactoryPluginInterface {
/**
* The entity type manager.
*
* @var \Drupal\Core\Entity\EntityTypeManagerInterface
*/
protected $entityTypeManager;
/**
* Constructs a new Role object.
*
* @param array $configuration
* Plugin configuration.
* @param string $plugin_id
* The plugin ID.
* @param mixed $plugin_definition
* The plugin definition.
* @param \Drupal\Core\Entity\EntityTypeManagerInterface $entity_type_manager
* The entity type manager.
*/
public function __construct(array $configuration, $plugin_id, $plugin_definition, EntityTypeManagerInterface $entity_type_manager) {
parent::__construct($configuration, $plugin_id, $plugin_definition);
$this->entityTypeManager = $entity_type_manager;
}
/**
* {@inheritdoc}
*/
public static function create(ContainerInterface $container, array $configuration, $plugin_id, $plugin_definition) {
return new static($configuration, $plugin_id, $plugin_definition, $container
->get('entity_type.manager'));
}
/**
* {@inheritdoc}
*/
public function buildConfigurationForm(array $form, FormStateInterface $form_state) {
$roles = array_filter($this->entityTypeManager
->getStorage('user_role')
->loadMultiple(), function (RoleInterface $role) {
return !in_array($role
->id(), [
RoleInterface::ANONYMOUS_ID,
RoleInterface::AUTHENTICATED_ID,
], TRUE);
});
$role_options = array_map(function (RoleInterface $role) {
return $role
->label();
}, $roles);
return [
'roles' => [
'#type' => 'checkboxes',
'#title' => $this
->t('Roles'),
'#description' => $this
->t('Send to all users with selected roles'),
'#options' => $role_options,
'#default_value' => $this
->getRoles(),
],
];
}
/**
* {@inheritdoc}
*/
public function submitConfigurationForm(array &$form, FormStateInterface $form_state) {
$this
->setRoles(array_filter($form_state
->getValue('roles')));
parent::submitConfigurationForm($form, $form_state);
}
/**
* {@inheritdoc}
*/
public function prepareRecipients(ContentEntityInterface $entity, TemplateInterface $template) {
$recipients = [];
foreach ($this
->getRoles() as $role) {
foreach ($this->entityTypeManager
->getStorage('user')
->loadByProperties([
'roles' => $role,
'status' => 1,
]) as $account) {
$recipients[] = $account
->getEmail();
}
}
return $recipients;
}
/**
* {@inheritdoc}
*/
public function calculateDependencies() {
$dependencies = [];
$role_storage = $this->entityTypeManager
->getStorage('user_role');
foreach ($role_storage
->loadMultiple($this
->getRoles()) as $role) {
$dependencies[$role
->getConfigDependencyKey()][] = $role
->getConfigDependencyName();
}
return NestedArray::mergeDeep($dependencies, parent::calculateDependencies());
}
/**
* {@inheritdoc}
*/
public function onDependencyRemoval(array $dependencies) {
$removed_roles = array_reduce($dependencies['config'], function (array $carry, $item) {
if (!$item instanceof RoleInterface) {
return $carry;
}
$carry[] = $item
->id();
return $carry;
}, []);
if ($removed_roles && array_intersect($removed_roles, $this
->getRoles())) {
$this
->setRoles(array_diff($this
->getRoles(), $removed_roles));
return TRUE;
}
return FALSE;
}
/**
* Gets value of roles.
*
* @return array
* Value of roles
*/
protected function getRoles() {
return $this
->getConfiguration()['settings']['roles'];
}
/**
* Sets roles.
*
* @param array $roles
* Role IDs.
*
* @return $this
*/
protected function setRoles(array $roles) {
$configuration = $this
->getConfiguration();
$configuration['settings']['roles'] = $roles;
$this
->setConfiguration($configuration);
return $this;
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
DependencySerializationTrait:: |
protected | property | ||
DependencySerializationTrait:: |
protected | property | ||
DependencySerializationTrait:: |
public | function | 2 | |
DependencySerializationTrait:: |
public | function | 2 | |
MessengerTrait:: |
protected | property | The messenger. | 27 |
MessengerTrait:: |
public | function | Gets the messenger. | 27 |
MessengerTrait:: |
public | function | Sets the messenger. | |
PluginBase:: |
protected | property | Configuration information passed into the plugin. | 1 |
PluginBase:: |
protected | property | The plugin implementation definition. | 1 |
PluginBase:: |
protected | property | The plugin_id. | |
PluginBase:: |
constant | A string which is used to separate base plugin IDs from the derivative ID. | ||
PluginBase:: |
public | function |
Gets the base_plugin_id of the plugin instance. Overrides DerivativeInspectionInterface:: |
|
PluginBase:: |
public | function |
Gets the derivative_id of the plugin instance. Overrides DerivativeInspectionInterface:: |
|
PluginBase:: |
public | function |
Gets the definition of the plugin implementation. Overrides PluginInspectionInterface:: |
2 |
PluginBase:: |
public | function |
Gets the plugin_id of the plugin instance. Overrides PluginInspectionInterface:: |
|
PluginBase:: |
public | function | Determines if the plugin is configurable. | |
PluginWithFormsTrait:: |
public | function | Implements \Drupal\Core\Plugin\PluginWithFormsInterface::getFormClass(). | |
PluginWithFormsTrait:: |
public | function | Implements \Drupal\Core\Plugin\PluginWithFormsInterface::hasFormClass(). | |
RecipientTypeBase:: |
public | property | The name of the provider that owns this recipient type. | |
RecipientTypeBase:: |
public | property | An associative array containing the configured settings of this recipient type. | |
RecipientTypeBase:: |
public | property | A Boolean indicating whether this recipient type is enabled. | |
RecipientTypeBase:: |
public | function |
Gets default configuration for this plugin. Overrides ConfigurableInterface:: |
|
RecipientTypeBase:: |
public | function |
Gets this plugin's configuration. Overrides ConfigurableInterface:: |
|
RecipientTypeBase:: |
public | function |
Returns the administrative description for this recipient type plugin. Overrides RecipientTypeInterface:: |
|
RecipientTypeBase:: |
public | function |
Returns the administrative label for this recipient type plugin. Overrides RecipientTypeInterface:: |
|
RecipientTypeBase:: |
public | function |
Checks status. Overrides RecipientTypeInterface:: |
|
RecipientTypeBase:: |
public | function |
Sets the configuration for this plugin instance. Overrides ConfigurableInterface:: |
|
RecipientTypeBase:: |
public | function |
Form validation handler. Overrides PluginFormInterface:: |
|
Role:: |
protected | property | The entity type manager. | |
Role:: |
public | function |
Generates a recipient types's settings form. Overrides RecipientTypeBase:: |
1 |
Role:: |
public | function |
Calculates dependencies for the configured plugin. Overrides RecipientTypeBase:: |
|
Role:: |
public static | function |
Creates an instance of the plugin. Overrides ContainerFactoryPluginInterface:: |
|
Role:: |
protected | function | Gets value of roles. | |
Role:: |
public | function |
Informs the plugin that a dependency of the recipient type will be deleted. Overrides RecipientTypeBase:: |
|
Role:: |
public | function |
Returns email address(s) matching this recipient type's configuration. Overrides RecipientTypeBase:: |
1 |
Role:: |
protected | function | Sets roles. | |
Role:: |
public | function |
Form submission handler. Overrides RecipientTypeBase:: |
|
Role:: |
public | function |
Constructs a new Role object. Overrides RecipientTypeBase:: |
|
StringTranslationTrait:: |
protected | property | The string translation service. | 4 |
StringTranslationTrait:: |
protected | function | Formats a string containing a count of items. | |
StringTranslationTrait:: |
protected | function | Returns the number of plurals supported by a given language. | |
StringTranslationTrait:: |
protected | function | Gets the string translation service. | |
StringTranslationTrait:: |
public | function | Sets the string translation service to use. | 2 |
StringTranslationTrait:: |
protected | function | Translates a string to the current language or to a given language. |