You are here

public function WebformScheduledEmailManager::ready in Webform 8.5

Same name and namespace in other branches
  1. 6.x modules/webform_scheduled_email/src/WebformScheduledEmailManager.php \Drupal\webform_scheduled_email\WebformScheduledEmailManager::ready()

Get the number of emails ready to be sent during the next cron task.

Parameters

\Drupal\Core\Entity\EntityInterface $entity: A webform, webform submission, or source entity.

string|null $handler_id: A webform handler id.

Return value

int The number of emails ready to be sent.

Overrides WebformScheduledEmailManagerInterface::ready

1 call to WebformScheduledEmailManager::ready()
WebformScheduledEmailManager::stats in modules/webform_scheduled_email/src/WebformScheduledEmailManager.php
Get all the handler's statistics.

File

modules/webform_scheduled_email/src/WebformScheduledEmailManager.php, line 774

Class

WebformScheduledEmailManager
Defines the webform scheduled email manager.

Namespace

Drupal\webform_scheduled_email

Code

public function ready(EntityInterface $entity = NULL, $handler_id = NULL) {
  return $this
    ->total($entity, $handler_id, WebformScheduledEmailManagerInterface::SUBMISSION_READY);
}