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