You are here

public function SmsMessage::getDirection in SMS Framework 2.1.x

Same name in this branch
  1. 2.1.x src/Message/SmsMessage.php \Drupal\sms\Message\SmsMessage::getDirection()
  2. 2.1.x src/Entity/SmsMessage.php \Drupal\sms\Entity\SmsMessage::getDirection()
Same name and namespace in other branches
  1. 8 src/Entity/SmsMessage.php \Drupal\sms\Entity\SmsMessage::getDirection()
  2. 2.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 321

Class

SmsMessage
Defines the SMS message entity.

Namespace

Drupal\sms\Entity

Code

public function getDirection() {
  return $this
    ->get('direction')->value;
}