phpdoc updates
[squirrelmail.git] / src / image.php
... / ...
CommitLineData
1<?php
2
3/**
4 * image.php
5 *
6 * Copyright (c) 1999-2004 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 * @package squirrelmail
13 */
14
15/** Path for SquirrelMail required files. */
16define('SM_PATH','../');
17
18/* SquirrelMail required files. */
19require_once(SM_PATH . 'include/validate.php');
20require_once(SM_PATH . 'functions/global.php');
21require_once(SM_PATH . 'functions/date.php');
22require_once(SM_PATH . 'functions/page_header.php');
23require_once(SM_PATH . 'functions/html.php');
24require_once(SM_PATH . 'include/load_prefs.php');
25
26displayPageHeader($color, 'None');
27
28/* globals */
29if ( sqgetGlobalVar('passed_id', $temp, SQ_GET) ) {
30 $passed_id = (int) $temp;
31}
32sqgetGlobalVar('mailbox', $mailbox, SQ_GET);
33sqgetGlobalVar('ent_id', $ent_id, SQ_GET);
34sqgetGlobalVar('QUERY_STRING', $QUERY_STRING, SQ_SERVER);
35/* end globals */
36
37echo '<BR>' .
38 '<TABLE WIDTH="100%" BORDER=0 CELLSPACING=0 CELLPADDING=2 ALIGN=CENTER>' .
39 "\n" .
40 '<TR><TD BGCOLOR="' . $color[0] . '">' .
41 '<B><CENTER>' .
42 _("Viewing an image attachment") . " - ";
43
44$msg_url = 'read_body.php?' . $QUERY_STRING;
45$msg_url = set_url_var($msg_url, 'ent_id', 0);
46echo '<a href="'.$msg_url.'">'. _("View message") . '</a>';
47
48
49$DownloadLink = '../src/download.php?passed_id=' . $passed_id .
50 '&amp;mailbox=' . urlencode($mailbox) .
51 '&amp;ent_id=' . urlencode($ent_id) . '&amp;absolute_dl=true';
52
53echo '</b></td></tr>' . "\n" .
54 '<tr><td align=center><A HREF="' . $DownloadLink . '">' .
55 _("Download this as a file") .
56 '</A></B><BR>&nbsp;' . "\n" .
57 '</TD></TR></TABLE>' . "\n" .
58
59 '<TABLE BORDER=0 CELLSPACING=0 CELLPADDING=2 ALIGN=CENTER>' . "\n" .
60 '<TR><TD BGCOLOR="' . $color[4] . '">' .
61 '<img src="' . $DownloadLink . '">' .
62
63 '</TD></TR></TABLE>' . "\n";
64 '</body></html>' . "\n";
65
66?>