function theme_message_digest in Message Digest 7
Theme function for message_digest
1 theme call to theme_message_digest()
- MessageDigest::format in plugins/
notifier/ abstract.inc - Given an array of mids, build the full message content for them and combine them into one blob of email content.
File
- ./
message_digest.module, line 106
Code
function theme_message_digest($vars) {
return implode("\n<hr />", $vars['messages']);
}