You are here

public function SmsMessage::setAutomated in SMS Framework 8

Same name in this branch
  1. 8 src/Message/SmsMessage.php \Drupal\sms\Message\SmsMessage::setAutomated()
  2. 8 src/Entity/SmsMessage.php \Drupal\sms\Entity\SmsMessage::setAutomated()
Same name and namespace in other branches
  1. 2.x src/Entity/SmsMessage.php \Drupal\sms\Entity\SmsMessage::setAutomated()
  2. 2.1.x src/Entity/SmsMessage.php \Drupal\sms\Entity\SmsMessage::setAutomated()

Sets whether this SMS message was generated automatically.

Parameters

bool $automated: Whether this SMS message was generated automatically. Set to FALSE if the message is created due to direct action.

Return value

$this The called SMS message object.

Overrides SmsMessageInterface::setAutomated

File

src/Entity/SmsMessage.php, line 305

Class

SmsMessage
Defines the SMS message entity.

Namespace

Drupal\sms\Entity

Code

public function setAutomated($automated) {
  $this
    ->set('automated', $automated);
  return $this;
}