You are here

public function SmsMessage::removeOption in SMS Framework 8

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

Removes an option from this SMS message.

Parameters

string $name: The name of the option.

Return value

$this The called SMS message object.

Overrides SmsMessageInterface::removeOption

File

src/Entity/SmsMessage.php, line 141

Class

SmsMessage
Defines the SMS message entity.

Namespace

Drupal\sms\Entity

Code

public function removeOption($name) {
  $options = $this
    ->getOptions();
  unset($options[$name]);
  $this
    ->set('options', $options);
  return $this;
}