class RecipientHandlerSubscribersByRole in Simplenews 3.x
Same name and namespace in other branches
- 8.2 modules/simplenews_demo/src/Plugin/simplenews/RecipientHandler/RecipientHandlerSubscribersByRole.php \Drupal\simplenews_demo\Plugin\simplenews\RecipientHandler\RecipientHandlerSubscribersByRole
This handler sends to all subscribers with the specified role.
Plugin annotation
@RecipientHandler(
id = "simplenews_subscribers_by_role",
title = @Translation("Subscribers by role")
)
Hierarchy
- class \Drupal\Component\Plugin\PluginBase implements DerivativeInspectionInterface, PluginInspectionInterface
- class \Drupal\Core\Plugin\PluginBase uses DependencySerializationTrait, MessengerTrait, StringTranslationTrait
- class \Drupal\simplenews\Plugin\simplenews\RecipientHandler\RecipientHandlerBase implements RecipientHandlerInterface
- class \Drupal\simplenews\Plugin\simplenews\RecipientHandler\RecipientHandlerEntityBase
- class \Drupal\simplenews_demo\Plugin\simplenews\RecipientHandler\RecipientHandlerSubscribersByRole
- class \Drupal\simplenews\Plugin\simplenews\RecipientHandler\RecipientHandlerEntityBase
- class \Drupal\simplenews\Plugin\simplenews\RecipientHandler\RecipientHandlerBase implements RecipientHandlerInterface
- class \Drupal\Core\Plugin\PluginBase uses DependencySerializationTrait, MessengerTrait, StringTranslationTrait
Expanded class hierarchy of RecipientHandlerSubscribersByRole
File
- modules/
simplenews_demo/ src/ Plugin/ simplenews/ RecipientHandler/ RecipientHandlerSubscribersByRole.php, line 16
Namespace
Drupal\simplenews_demo\Plugin\simplenews\RecipientHandlerView source
class RecipientHandlerSubscribersByRole extends RecipientHandlerEntityBase {
/**
* {@inheritdoc}
*/
public function settingsForm() {
$roles = array_map([
'\\Drupal\\Component\\Utility\\Html',
'escape',
], user_role_names(TRUE));
$element['role'] = [
'#type' => 'select',
'#title' => t('Role'),
'#default_value' => $this->configuration['role'] ?? NULL,
'#options' => $roles,
];
return $element;
}
/**
* {@inheritdoc}
*/
protected function buildEntityQuery() {
return \Drupal::entityQuery('simplenews_subscriber')
->condition('status', SubscriberInterface::ACTIVE)
->condition('subscriptions', $this
->getNewsletterId())
->condition('subscriptions.status', SIMPLENEWS_SUBSCRIPTION_STATUS_SUBSCRIBED)
->condition('uid.entity.roles', $this->configuration['role']);
}
}
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. | |
RecipientHandlerBase:: |
protected | property | The database connection. | |
RecipientHandlerBase:: |
protected | property | The newsletter issue. | |
RecipientHandlerBase:: |
protected | property | The newsletter IDs. | |
RecipientHandlerBase:: |
protected | function | Adds an array of entries to the spool. | |
RecipientHandlerBase:: |
protected | function | Checks if the recipient count can be cached. | 2 |
RecipientHandlerBase:: |
public | function | ||
RecipientHandlerBase:: |
protected | function | Returns the newsletter ID. | |
RecipientHandlerBase:: |
public | function |
RecipientHandlerBase constructor. Overrides PluginBase:: |
|
RecipientHandlerEntityBase:: |
public | function |
Adds a newsletter issue to the mail spool. Overrides RecipientHandlerInterface:: |
|
RecipientHandlerEntityBase:: |
protected | function |
Counts the number of recipients. Overrides RecipientHandlerBase:: |
|
RecipientHandlerSubscribersByRole:: |
protected | function |
Build the query that gets the list of subscribers. Overrides RecipientHandlerEntityBase:: |
|
RecipientHandlerSubscribersByRole:: |
public | function |
Returns the elements to add to the settings form for handler settings. Overrides RecipientHandlerBase:: |
|
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. |