if ($ent_ar[0] != '') {
for ($i = 0; $i < count($ent_ar); $i++) {
$body .= formatBody($imapConnection, $message, $color, $wrap_at, $ent_ar[$i], $passed_id, $mailbox, TRUE);
- $body .= '<hr style="height: 1px;" />';
+ if ($i < count($ent_ar)-1) {
+ $body .= '<hr />';
+ }
}
$hookResults = do_hook('message_body', $body);
$body = $hookResults[1];
$from = decodeHeader($from);
$subject = decodeHeader($subject);
-$attachments = pf_show_attachments($message,$ent_ar,$mailbox,$passed_id);
-
// --end display setup--
/* --start browser output-- */
-displayHtmlHeader( $subject, '', FALSE );
+displayHtmlHeader($subject);
-echo '<body text="#000000" bgcolor="#FFFFFF" link="#000000" vlink="#000000" alink="#000000">'."\n" .
- /* headers (we use table because translations are not all the same width) */
- html_tag( 'table', '', 'center', '', 'cellspacing="0" cellpadding="0" border="0" width="100%"' ) .
- html_tag( 'tr',
- html_tag( 'td', '<b>'._("From").':</b> ', 'left' ,'','valign="top"') .
- html_tag( 'td', $from, 'left' )
- ) . "\n" .
- html_tag( 'tr',
- html_tag( 'td', '<b>'._("Subject").':</b> ', 'left','','valign="top"' ) .
- html_tag( 'td', $subject, 'left' )
- ) . "\n" .
- html_tag( 'tr',
- html_tag( 'td', '<b>'._("Date").':</b> ', 'left' ) .
- html_tag( 'td', htmlspecialchars($date), 'left' )
- ) . "\n" .
- html_tag( 'tr',
- html_tag( 'td', '<b>'._("To").':</b> ', 'left','','valign="top"' ) .
- html_tag( 'td', $to, 'left' )
- ) . "\n";
- if ( strlen($cc) > 0 ) { /* only show Cc: if it's there... */
- echo html_tag( 'tr',
- html_tag( 'td', '<b>'._("Cc").':</b> ', 'left','','valign="top"' ) .
- html_tag( 'td', $cc, 'left' )
- );
- }
- /* body */
- echo html_tag( 'tr',
- html_tag( 'td', '<hr style="height: 1px;" /><br />' . "\n" . $body, 'left', '', 'colspan="2"' )
- ) . "\n" ;
+$aHeaders = array();
+$aHeaders[ _("From") ] = $from;
+$aHeaders[ _("Subject") ] = $subject;
+$aHeaders[ _("Date") ] = htmlspecialchars($date);
+$aHeaders[ _("To") ] = $to;
+$aHeaders[ _("Cc") ] = $cc;
- if (! empty($attachments)) {
- // attachments title
- echo html_tag( 'tr',
- html_tag( 'td','<b>'._("Attachments:").'</b>', 'left', '', 'colspan="2"' )
- ) . "\n" ;
- // list of attachments
- echo html_tag( 'tr',
- html_tag( 'td',$attachments, 'left', '', 'colspan="2"' )
- ) . "\n" ;
- // add separator line
- echo html_tag( 'tr',
- html_tag( 'td', '<hr style="height: 1px;" />', 'left', '', 'colspan="2"' )
- ) . "\n" ;
- }
+$attachments_ar = buildAttachmentArray($message, $ent_ar, $mailbox, $passed_id);
+
+$oTemplate->assign('headers', $aHeaders);
+$oTemplate->assign('message_body', $body);
+$oTemplate->assign('attachments', $attachments_ar);
- echo '</table>' . "\n";
+$oTemplate->display('printer_friendly_bottom.tpl');
$oTemplate->display('footer.tpl');
/* --end browser output-- */
return $clean_string;
} /* end pf_clean_string() function */
-
-/**
- * Displays attachment information
- *
- * Stripped version of formatAttachments() function from functions/mime.php.
- * @param object $message SquirrelMail message object
- * @param array $exclude_id message parts that are not attachments.
- * @param string $mailbox mailbox name
- * @param integer $id message id
- * @return string html formated attachment information.
- */
-function pf_show_attachments($message, $exclude_id, $mailbox, $id) {
- global $where, $what, $startMessage, $color, $passed_ent_id;
-
- $att_ar = $message->getAttachments($exclude_id);
-
- if (!count($att_ar)) return '';
-
- $attachments = '';
-
- $urlMailbox = urlencode($mailbox);
-
- foreach ($att_ar as $att) {
- $ent = $att->entity_id;
- $header = $att->header;
- $type0 = strtolower($header->type0);
- $type1 = strtolower($header->type1);
- $name = '';
-
- if ($type0 =='message' && $type1 == 'rfc822') {
- $rfc822_header = $att->rfc822_header;
- $filename = $rfc822_header->subject;
- if (trim( $filename ) == '') {
- $filename = 'untitled-[' . $ent . ']' ;
- }
- $from_o = $rfc822_header->from;
- if (is_object($from_o)) {
- $from_name = decodeHeader($from_o->getAddress(true));
- } else {
- $from_name = _("Unknown sender");
- }
- $description = '<tr>'.
- html_tag( 'td',_("From:"), 'right') .
- html_tag( 'td',$from_name, 'left') .
- '</tr>';
- } else {
- $filename = $att->getFilename();
- if ($header->description) {
- $description = '<tr>'.
- html_tag( 'td',_("Info:"), 'right') .
- html_tag( 'td',decodeHeader($header->description), 'left') .
- '</tr>';
- } else {
- $description = '';
- }
- }
-
- $display_filename = $filename;
-
- // TODO: maybe make it nicer?
- $attachments .= '<table cellpadding="1" cellspacing="0" width="100%" border="1"><tr><th colspan="2">'.decodeHeader($display_filename).'</th></tr>' .
- '<tr>'.
- html_tag( 'td',_("Size:"), 'right', '', 'width="25%"') .
- html_tag( 'td',show_readable_size($header->size), 'left', '', 'width="75%"') .
- '</tr><tr>' . "\n" .
- html_tag( 'td',_("Type:"), 'right', '', 'width="25%"') .
- html_tag( 'td',htmlspecialchars($type0).'/'.htmlspecialchars($type1), 'left', '', 'width="75%"') .
- '</tr>';
- if (! empty($description)) {
- $attachments .= $description;
- }
- $attachments .= "</table>\n";
- }
- return $attachments;
-}
-
-
-/* --end pf-specific functions */
-
-?>
--- /dev/null
+<?php
+/**
+ * printer_friendly_bottom.tpl
+ *
+ * Display the printer friendly version of an email. This is called "_bottom"
+ * because when javaascript is enabled, the printer friendly view is a window
+ * with two frames.
+ *
+ * The following variables are available in this template:
+ * $headers - array containing the headers to be displayed for this email.
+ * Each element in the array represents a separate header.
+ * The index of each element is the field name; the value is
+ * the value of that field.
+ * $message_body - formatted, scrubbed body of the email.
+ * $attachments - array containing info for all message attachments. Each
+ * element in the array represents a separate attachment and
+ * contains the following elements:
+ * $el['Name'] - The name of the attachment
+ * $el['Description'] - Description of the attachment
+ * $el['DefaultHREF'] - URL to the action that should occur when the name is clicked
+ * $el['DownloadHREF'] - URL to download the attachment
+ * $el['ViewHREF'] - URL to view the attachment. Empty if not available.
+ * $el['Size'] - Size of attachment in bytes.
+ * $el['ContentType'] - Content-Type of the attachment
+ * $el['OtherLinks'] - array containing links to any other actions
+ * available for this attachment that might be
+ * provided by plugins, for example. Each element represents
+ * a different action and contains the following elements:
+ * $link['HREF'] - URL to access the functionality
+ * $link['Text'] - Text representing the functionality.
+ *
+ *
+ * @copyright © 1999-2006 The SquirrelMail Project Team
+ * @license http://opensource.org/licenses/gpl-license.php GNU Public License
+ * @version $Id$
+ * @package squirrelmail
+ * @subpackage templates
+ */
+
+/** add required includes **/
+include_once(SM_PATH . 'templates/util_global.php');
+
+/** extract template variables **/
+extract($t);
+
+/** Begin template **/
+?>
+<div class="printerFriendly">
+<table cellspacing="0" class="table_blank">
+ <?php
+ foreach ($headers as $field=>$value) {
+ # If the value is empty, skip the entry.
+ if (empty($value))
+ continue;
+ ?>
+ <tr>
+ <td class="fieldName">
+ <?php echo $field; ?>:
+ </td>
+ <td class="fieldValue">
+ <?php echo $value; ?>
+ </td>
+ </tr>
+ <?php
+ }
+ ?>
+</table>
+<hr />
+<?php echo $message_body; ?>
+<?php
+if (count($attachments) > 0) {
+ ?>
+<hr />
+<b>Attachments:</b>
+ <?php
+ foreach ($attachments as $attachment) {
+ ?>
+<table cellspacing="0" border="1" class="attach">
+ <tr>
+ <td colspan="2" class="attachName">
+ <?php echo $attachment['Name']; ?>
+ </td>
+ </tr>
+ <tr>
+ <td class="attachField">
+ <?php echo _("Size"); ?>:
+ </td>
+ <td class="attachFieldValue">
+ <?php echo humanReadableSize($attachment['Size']); ?>
+ </td>
+ </tr>
+ <tr>
+ <td class="attachField">
+ <?php echo _("Type"); ?>:
+ </td>
+ <td class="attachFieldValue">
+ <?php echo $attachment['ContentType']; ?>
+ </td>
+ </tr>
+ <tr>
+ <td class="attachField">
+ <?php echo _("Info"); ?>:
+ </td>
+ <td class="attachFieldValue">
+ <?php echo $attachment['Description']; ?>
+ </td>
+ </tr>
+</table>
+ <?php
+ }
+}
+?>
+</div>
\ No newline at end of file