You are here

public function SmsMessage::getReports in SMS Framework 8

Same name in this branch
  1. 8 src/Message/SmsMessage.php \Drupal\sms\Message\SmsMessage::getReports()
  2. 8 src/Entity/SmsMessage.php \Drupal\sms\Entity\SmsMessage::getReports()
Same name and namespace in other branches
  1. 2.x src/Entity/SmsMessage.php \Drupal\sms\Entity\SmsMessage::getReports()
  2. 2.1.x src/Entity/SmsMessage.php \Drupal\sms\Entity\SmsMessage::getReports()

Gets the delivery reports for all recipients.

Return value

\Drupal\sms\Message\SmsDeliveryReportInterface[] An array of delivery reports.

Overrides SmsMessageInterface::getReports

File

src/Entity/SmsMessage.php, line 217

Class

SmsMessage
Defines the SMS message entity.

Namespace

Drupal\sms\Entity

Code

public function getReports() {

  // If a result has been set, check that first.
  if ($this->result) {
    return $this->result
      ->getReports();
  }
  elseif (!$this
    ->isNew()) {
    return array_values($this
      ->entityTypeManager()
      ->getStorage('sms_report')
      ->loadByProperties([
      'sms_message' => $this
        ->id(),
    ]));
  }
  return [];
}