public function SmsMessage::getDirection in SMS Framework 8
Same name in this branch
- 8 src/Message/SmsMessage.php \Drupal\sms\Message\SmsMessage::getDirection()
- 8 src/Entity/SmsMessage.php \Drupal\sms\Entity\SmsMessage::getDirection()
Same name and namespace in other branches
- 2.x src/Entity/SmsMessage.php \Drupal\sms\Entity\SmsMessage::getDirection()
- 2.1.x src/Entity/SmsMessage.php \Drupal\sms\Entity\SmsMessage::getDirection()
Get direction of the message.
Return value
int See \Drupal\sms\Direction constants for potential values.
Overrides SmsMessageInterface::getDirection
File
- src/
Entity/ SmsMessage.php, line 319
Class
- SmsMessage
- Defines the SMS message entity.
Namespace
Drupal\sms\EntityCode
public function getDirection() {
return $this
->get('direction')->value;
}