protected function Messaging_Template::default_text in Messaging 7
Default texts for this template, may need token replacement
2 calls to Messaging_Template::default_text()
- Messaging_Message_Template::default_text in messaging_template/
messaging_template.inc - Default texts for this template, may need token replacement
- Messaging_Template::get_text in messaging_template/
messaging_template.inc - Get text element from this template
1 method overrides Messaging_Template::default_text()
- Messaging_Message_Template::default_text in messaging_template/
messaging_template.inc - Default texts for this template, may need token replacement
File
- messaging_template/
messaging_template.inc, line 399 - Drupal Messaging Framework - Text filtering functions
Class
- Messaging_Template
- Base template class
Code
protected function default_text($type, $options) {
// Text not found, something went wrong with our template processing
return t('Template text not found: @type.', array(
'@type' => $type,
), $options);
}