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