diff options
author | Thomas Bruederli <thomas@roundcube.net> | 2012-07-13 20:16:52 +0200 |
---|---|---|
committer | Thomas Bruederli <thomas@roundcube.net> | 2012-07-13 20:16:52 +0200 |
commit | 384948886c4a1bedb17318af63c944c33ae0b3b6 (patch) | |
tree | 66f7a0fb29be3070dda9434c68097b22ec8be905 /program/steps/mail | |
parent | 88fb5635109ff5ed994aa5624c0bc1a95c814176 (diff) |
Prepare to show contact photo of email sender in mail views
Diffstat (limited to 'program/steps/mail')
-rw-r--r-- | program/steps/mail/show.inc | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/program/steps/mail/show.inc b/program/steps/mail/show.inc index 5fa72d77f..70c083353 100644 --- a/program/steps/mail/show.inc +++ b/program/steps/mail/show.inc @@ -266,11 +266,25 @@ function rcmail_contact_exists($email) return false; } +function rcmail_message_contactphoto($attrib) +{ + global $RCMAIL, $MESSAGE; + + $placeholder = $attrib['placeholder'] ? $RCMAIL->config->get('skin_path') . $attrib['placeholder'] : null; + if ($MESSAGE->sender) + $photo_img = $RCMAIL->url(array('_task' => 'addressbook', '_action' => 'photo', '_email' => $MESSAGE->sender['mailto'], '_alt' => $placeholder)); + else + $photo_img = $placeholder ? $placeholder : 'program/blank.gif'; + + return html::img(array('src' => $photo_img) + $attrib); +} + $OUTPUT->add_handlers(array( 'messageattachments' => 'rcmail_message_attachments', 'mailboxname' => 'rcmail_mailbox_name_display', 'messageobjects' => 'rcmail_message_objects', + 'contactphoto' => 'rcmail_message_contactphoto', )); |