public function SmsMessage::setOption in SMS Framework 8
Same name in this branch
- 8 src/Message/SmsMessage.php \Drupal\sms\Message\SmsMessage::setOption()
- 8 src/Entity/SmsMessage.php \Drupal\sms\Entity\SmsMessage::setOption()
Same name and namespace in other branches
- 2.x src/Entity/SmsMessage.php \Drupal\sms\Entity\SmsMessage::setOption()
- 2.1.x src/Entity/SmsMessage.php \Drupal\sms\Entity\SmsMessage::setOption()
Sets an option for this SMS message.
Parameters
string $name: The name of the option.
mixed $value: The value of the option.
Return value
$this The called SMS message object.
Overrides SmsMessageInterface::setOption
File
- src/
Entity/ SmsMessage.php, line 131
Class
- SmsMessage
- Defines the SMS message entity.
Namespace
Drupal\sms\EntityCode
public function setOption($name, $value) {
$options = $this
->getOptions();
$options[$name] = $value;
$this
->set('options', $options);
return $this;
}