You are here

public function Messaging_Message_Text::set_option in Messaging 7

Set single option

Overrides Messaging_Message_Render::set_option

1 call to Messaging_Message_Text::set_option()
Messaging_Message_Text::set_format in ./messaging.text.inc
Set text format, just change separator

File

./messaging.text.inc, line 108
Basic message templates and theming

Class

Messaging_Message_Text
Very simple template with plain subject, header, content, footer texts

Code

public function set_option($name, $value = TRUE) {
  $this->options[$name] = $value;
  return $this;
}