class SmsMessageReportStatus in SMS Framework 2.x
Same name and namespace in other branches
- 8 src/Message/SmsMessageReportStatus.php \Drupal\sms\Message\SmsMessageReportStatus
- 2.1.x src/Message/SmsMessageReportStatus.php \Drupal\sms\Message\SmsMessageReportStatus
Defines states for SMS message reports.
Hierarchy
- class \Drupal\sms\Message\SmsMessageStatus
- class \Drupal\sms\Message\SmsMessageReportStatus
Expanded class hierarchy of SmsMessageReportStatus
7 files declare their use of SmsMessageReportStatus
- Memory.php in tests/
modules/ sms_test_gateway/ src/ Plugin/ SmsGateway/ Memory.php - SmsDeliveryReport.php in src/
Entity/ SmsDeliveryReport.php - SmsFrameworkDeliveryReportEntityTest.php in tests/
src/ Kernel/ SmsFrameworkDeliveryReportEntityTest.php - SmsFrameworkDeliveryReportTest.php in tests/
src/ Functional/ SmsFrameworkDeliveryReportTest.php - SmsFrameworkDeliveryReportUpdateTest.php in tests/
src/ Kernel/ SmsFrameworkDeliveryReportUpdateTest.php
File
- src/
Message/ SmsMessageReportStatus.php, line 10
Namespace
Drupal\sms\MessageView source
class SmsMessageReportStatus extends SmsMessageStatus {
/**
* Message was queued for sending.
*/
const QUEUED = 'queued';
/**
* Message was successfully delivered to the recipient.
*/
const DELIVERED = 'delivered';
/**
* Message expired and was not sent.
*/
const EXPIRED = 'expired';
/**
* Message was rejected by the gateway.
*/
const REJECTED = 'rejected';
/**
* Indicates a recipient of the message is invalid.
*/
const INVALID_RECIPIENT = 'invalid_recipient';
/**
* Content of message invalid or not supported by gateway.
*/
const CONTENT_INVALID = 'content_invalid';
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
SmsMessageReportStatus:: |
constant | Content of message invalid or not supported by gateway. | ||
SmsMessageReportStatus:: |
constant | Message was successfully delivered to the recipient. | ||
SmsMessageReportStatus:: |
constant | Message expired and was not sent. | ||
SmsMessageReportStatus:: |
constant | Indicates a recipient of the message is invalid. | ||
SmsMessageReportStatus:: |
constant | Message was queued for sending. | ||
SmsMessageReportStatus:: |
constant | Message was rejected by the gateway. | ||
SmsMessageStatus:: |
constant | Message could not be processed due to an unknown problem with the gateway. |