You are here

public function SmsGatewayPluginInterface::getDeliveryReports in SMS Framework 8

Same name and namespace in other branches
  1. 2.x src/Plugin/SmsGatewayPluginInterface.php \Drupal\sms\Plugin\SmsGatewayPluginInterface::getDeliveryReports()
  2. 2.1.x src/Plugin/SmsGatewayPluginInterface.php \Drupal\sms\Plugin\SmsGatewayPluginInterface::getDeliveryReports()

Gets delivery reports from the gateway.

Parameters

string[]|null $message_ids: A list of specific message ID's to pull, or NULL to get any reports which have not been requested previously.

Return value

\Drupal\sms\Message\SmsDeliveryReportInterface[] An array of the delivery reports which have been pulled.

1 method overrides SmsGatewayPluginInterface::getDeliveryReports()
SmsGatewayPluginBase::getDeliveryReports in src/Plugin/SmsGatewayPluginBase.php
Gets delivery reports from the gateway.

File

src/Plugin/SmsGatewayPluginInterface.php, line 66

Class

SmsGatewayPluginInterface
Default implementation of SMS gateway plugin.

Namespace

Drupal\sms\Plugin

Code

public function getDeliveryReports(array $message_ids = NULL);