public function SmsMessage::isAutomated in SMS Framework 8
Same name in this branch
- 8 src/Message/SmsMessage.php \Drupal\sms\Message\SmsMessage::isAutomated()
- 8 src/Entity/SmsMessage.php \Drupal\sms\Entity\SmsMessage::isAutomated()
Same name and namespace in other branches
- 2.x src/Entity/SmsMessage.php \Drupal\sms\Entity\SmsMessage::isAutomated()
- 2.1.x src/Entity/SmsMessage.php \Drupal\sms\Entity\SmsMessage::isAutomated()
Gets whether this SMS message was generated automatically.
Return value
bool Whether this SMS message was generated automatically.
Overrides SmsMessageInterface::isAutomated
File
- src/
Entity/ SmsMessage.php, line 298
Class
- SmsMessage
- Defines the SMS message entity.
Namespace
Drupal\sms\EntityCode
public function isAutomated() {
return $this
->get('automated')->value;
}