You are here

class RecipientHandlerNewUsers in Simplenews 8.2

Same name and namespace in other branches
  1. 3.x modules/simplenews_demo/src/Plugin/simplenews/RecipientHandler/RecipientHandlerNewUsers.php \Drupal\simplenews_demo\Plugin\simplenews\RecipientHandler\RecipientHandlerNewUsers

This handler sends to all active users that have never logged in.

Plugin annotation


@RecipientHandler(
  id = "simplenews_new_users",
  title = @Translation("New users")
)

Hierarchy

Expanded class hierarchy of RecipientHandlerNewUsers

File

modules/simplenews_demo/src/Plugin/simplenews/RecipientHandler/RecipientHandlerNewUsers.php, line 15

Namespace

Drupal\simplenews_demo\Plugin\simplenews\RecipientHandler
View source
class RecipientHandlerNewUsers extends RecipientHandlerEntityBase {

  /**
   * {@inheritdoc}
   */
  protected function buildEntityQuery() {
    return \Drupal::entityQuery('user')
      ->exists('mail')
      ->condition('access', 0)
      ->condition('status', TRUE);
  }

  /**
   * {@inheritdoc}
   */
  protected function cacheCount() {
    return TRUE;
  }

}

Members

Namesort descending Modifiers Type Description Overrides
DependencySerializationTrait::$_entityStorages protected property An array of entity type IDs keyed by the property name of their storages.
DependencySerializationTrait::$_serviceIds protected property An array of service IDs keyed by property name used for serialization.
DependencySerializationTrait::__sleep public function 1
DependencySerializationTrait::__wakeup public function 2
MessengerTrait::$messenger protected property The messenger. 29
MessengerTrait::messenger public function Gets the messenger. 29
MessengerTrait::setMessenger public function Sets the messenger.
PluginBase::$configuration protected property Configuration information passed into the plugin. 1
PluginBase::$pluginDefinition protected property The plugin implementation definition. 1
PluginBase::$pluginId protected property The plugin_id.
PluginBase::DERIVATIVE_SEPARATOR constant A string which is used to separate base plugin IDs from the derivative ID.
PluginBase::getBaseId public function Gets the base_plugin_id of the plugin instance. Overrides DerivativeInspectionInterface::getBaseId
PluginBase::getDerivativeId public function Gets the derivative_id of the plugin instance. Overrides DerivativeInspectionInterface::getDerivativeId
PluginBase::getPluginDefinition public function Gets the definition of the plugin implementation. Overrides PluginInspectionInterface::getPluginDefinition 3
PluginBase::getPluginId public function Gets the plugin_id of the plugin instance. Overrides PluginInspectionInterface::getPluginId
PluginBase::isConfigurable public function Determines if the plugin is configurable.
RecipientHandlerBase::$connection protected property The database connection.
RecipientHandlerBase::$issue protected property The newsletter issue.
RecipientHandlerBase::$newsletterIds protected property The newsletter IDs.
RecipientHandlerBase::addArrayToSpool protected function Adds an array of entries to the spool.
RecipientHandlerBase::count public function
RecipientHandlerBase::getNewsletterId protected function Returns the newsletter ID.
RecipientHandlerBase::settingsForm public function Returns the elements to add to the settings form for handler settings. Overrides RecipientHandlerInterface::settingsForm 1
RecipientHandlerBase::__construct public function RecipientHandlerBase constructor. Overrides PluginBase::__construct
RecipientHandlerEntityBase::addToSpool public function Adds a newsletter issue to the mail spool. Overrides RecipientHandlerInterface::addToSpool
RecipientHandlerEntityBase::doCount protected function Counts the number of recipients. Overrides RecipientHandlerBase::doCount
RecipientHandlerNewUsers::buildEntityQuery protected function Build the query that gets the list of subscribers. Overrides RecipientHandlerEntityBase::buildEntityQuery
RecipientHandlerNewUsers::cacheCount protected function Checks if the recipient count can be cached. Overrides RecipientHandlerBase::cacheCount
StringTranslationTrait::$stringTranslation protected property The string translation service. 1
StringTranslationTrait::formatPlural protected function Formats a string containing a count of items.
StringTranslationTrait::getNumberOfPlurals protected function Returns the number of plurals supported by a given language.
StringTranslationTrait::getStringTranslation protected function Gets the string translation service.
StringTranslationTrait::setStringTranslation public function Sets the string translation service to use. 2
StringTranslationTrait::t protected function Translates a string to the current language or to a given language.