public function SmsGatewayPluginInterface::getDeliveryReports in SMS Framework 2.1.x
Same name and namespace in other branches
- 8 src/Plugin/SmsGatewayPluginInterface.php \Drupal\sms\Plugin\SmsGatewayPluginInterface::getDeliveryReports()
- 2.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 69
Class
- SmsGatewayPluginInterface
- Default implementation of SMS gateway plugin.
Namespace
Drupal\sms\PluginCode
public function getDeliveryReports(array $message_ids = NULL);