function Messaging_Template::get_options in Messaging 7
Get options for texts, translations, etc
4 calls to Messaging_Template::get_options()
- Messaging_Template::element_defaults in messaging_template/messaging_template.inc 
- Messaging_Template::get_text in messaging_template/messaging_template.inc 
- Get text element from this template
- Messaging_Template::get_tokens in messaging_template/messaging_template.inc 
- Get tokens for templates
- Messaging_Template::token_replace in messaging_template/messaging_template.inc 
- Do token replacement with this template's objects
File
- messaging_template/messaging_template.inc, line 329 
- Drupal Messaging Framework - Text filtering functions
Class
- Messaging_Template
- Base template class
Code
function get_options() {
  if (!isset($this->options)) {
    $this
      ->set_language(language_default());
  }
  return $this->options;
}