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