You are here

function Messaging_Template::set_options in Messaging 7

Set array of options

File

messaging_template/messaging_template.inc, line 379
Drupal Messaging Framework - Text filtering functions

Class

Messaging_Template
Base template class

Code

function set_options($options = array()) {
  $this->options = array_merge($this->options, $options);
  return $this;
}