public function SmsMessage::getMessage in SMS Framework 2.x
Same name in this branch
- 2.x src/Message/SmsMessage.php \Drupal\sms\Message\SmsMessage::getMessage()
- 2.x src/Entity/SmsMessage.php \Drupal\sms\Entity\SmsMessage::getMessage()
Same name and namespace in other branches
- 8 src/Entity/SmsMessage.php \Drupal\sms\Entity\SmsMessage::getMessage()
- 2.1.x src/Entity/SmsMessage.php \Drupal\sms\Entity\SmsMessage::getMessage()
Gets the message to be sent.
Return value
string The message to be sent.
Overrides SmsMessageInterface::getMessage
File
- src/
Entity/ SmsMessage.php, line 262
Class
- SmsMessage
- Defines the SMS message entity.
Namespace
Drupal\sms\EntityCode
public function getMessage() {
return $this
->get('message')->value;
}