b27a47244774da1e023e144bad29483da5faf15a
[squirrelmail.git] / src / image.php
1 <?php
2
3 /**
4 * image.php
5 *
6 * Copyright (c) 1999-2003 The SquirrelMail Project Team
7 * Licensed under the GNU GPL. For full terms see the file COPYING.
8 *
9 * This file shows an attached image
10 *
11 * $Id$
12 */
13
14 /* Path for SquirrelMail required files. */
15 define('SM_PATH','../');
16
17 /* SquirrelMail required files. */
18 require_once(SM_PATH . 'include/validate.php');
19 require_once(SM_PATH . 'functions/date.php');
20 require_once(SM_PATH . 'functions/page_header.php');
21 require_once(SM_PATH . 'functions/html.php');
22 require_once(SM_PATH . 'include/load_prefs.php');
23
24 displayPageHeader($color, 'None');
25
26 /* globals */
27 $mailbox = $_GET['mailbox'];
28 $passed_id = (int) $_GET['passed_id'];
29 $ent_id = $_GET['ent_id'];
30 $QUERY_STRING = $_SERVER['QUERY_STRING'];
31 /* end globals */
32
33 echo '<BR>' .
34 '<TABLE WIDTH="100%" BORDER=0 CELLSPACING=0 CELLPADDING=2 ALIGN=CENTER>' .
35 "\n" .
36 '<TR><TD BGCOLOR="' . $color[0] . '">' .
37 '<B><CENTER>' .
38 _("Viewing an image attachment") . " - ";
39
40 $msg_url = 'read_body.php?' . urlencode(strip_tags(urldecode($QUERY_STRING)));
41 $msg_url = set_url_var($msg_url, 'ent_id', 0);
42 echo '<a href="'.$msg_url.'">'. _("View message") . '</a>';
43
44
45 $DownloadLink = '../src/download.php?passed_id=' . $passed_id .
46 '&amp;mailbox=' . urlencode($mailbox) .
47 '&amp;ent_id=' . urlencode($ent_id) . '&amp;absolute_dl=true';
48
49 echo '</b></td></tr>' . "\n" .
50 '<tr><td align=center><A HREF="' . $DownloadLink . '">' .
51 _("Download this as a file") .
52 '</A></B><BR>&nbsp;' . "\n" .
53 '</TD></TR></TABLE>' . "\n" .
54
55 '<TABLE BORDER=0 CELLSPACING=0 CELLPADDING=2 ALIGN=CENTER>' . "\n" .
56 '<TR><TD BGCOLOR="' . $color[4] . '">' .
57 '<img src="' . $DownloadLink . '">' .
58
59 '</TD></TR></TABLE>' . "\n";
60 '</body></html>' . "\n";
61
62 ?>