You are here

function theme_messaging_template_subject in Messaging 7

Theme message subject. Does nothing but can be overridden

1 theme call to theme_messaging_template_subject()
messaging_template_element_info in messaging_template/messaging_template.module
Implements hook_element_info()

File

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

Code

function theme_messaging_template_subject($variables) {
  $element = $variables['element'];
  return $element['#children'];
}