You are here

function theme_maillog_header_to in Maillog / Mail Developer 6

Same name and namespace in other branches
  1. 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()
theme_maillog in ./maillog.module

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;
}