SMPATH fix
[squirrelmail.git] / src / image.php
1 <?php
2
3 /**
4 * image.php
5 *
6 * Copyright (c) 1999-2002 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 echo '<BR>' .
27 '<TABLE WIDTH="100%" BORDER=0 CELLSPACING=0 CELLPADDING=2 ALIGN=CENTER>' .
28 "\n" .
29 '<TR><TD BGCOLOR="' . $color[0] . '">' .
30 '<B><CENTER>' .
31 _("Viewing an image attachment") . " - ";
32
33 $msg_url = 'read_body.php?' . $QUERY_STRING;
34 $msg_url = set_url_var($msg_url, 'ent_id', 0);
35 echo '<a href="'.$msg_url.'">'. _("View message") . '</a>';
36
37
38 $DownloadLink = '../src/download.php?passed_id=' . $passed_id .
39 '&amp;mailbox=' . urlencode($mailbox) .
40 '&amp;ent_id=' . $ent_id . '&amp;absolute_dl=true';
41
42 echo '</b></td></tr>' . "\n" .
43 '<tr><td align=center><A HREF="' . $DownloadLink . '">' .
44 _("Download this as a file") .
45 '</A></B><BR>&nbsp;' . "\n" .
46 '</TD></TR></TABLE>' . "\n" .
47
48 '<TABLE BORDER=0 CELLSPACING=0 CELLPADDING=2 ALIGN=CENTER>' . "\n" .
49 '<TR><TD BGCOLOR="' . $color[4] . '">' .
50 '<img src="' . $DownloadLink . '">' .
51
52 '</TD></TR></TABLE>' . "\n";
53 '</body></html>' . "\n";
54
55 ?>