function theme_maillog_header_reply_to in Maillog / Mail Developer 7
Same name and namespace in other branches
- 6 maillog.module \theme_maillog_header_reply_to()
Render the 'Reply-To' field in the node type 'Logged Mail'.
1 theme call to theme_maillog_header_reply_to()
- theme_maillog in ./
maillog.module - Render a maillog record.
File
- ./
maillog.module, line 208 - Primary hook implementations for the Maillog module.
Code
function theme_maillog_header_reply_to($variables) {
$output = '<div class="field mail-log-header-reply-to">' . "\n";
$output .= ' <div class="field-label">' . t('Reply To') . ":</div>\n";
$output .= ' <div class="field-item">' . check_plain($variables['header_reply_to']) . "</div>\n";
$output .= "</div>\n";
return $output;
}