Initial groundwork to use phpdocumentor.
[squirrelmail.git] / plugins / message_details / message_details_top.php
1 <?php
2
3 /** Message Source
4 *
5 * Plugin to view the RFC822 raw message output and the bodystructure of a message
6 *
7 * Copyright (c) 2002 Marc Groot Koerkamp, The Netherlands
8 * Licensed under the GNU GPL. For full terms see the file COPYING.
9 *
10 * $Id$
11 * @package plugins
12 * @subpackage message_details
13 */
14
15 /** @ignore */
16 define('SM_PATH','../../');
17
18 /* SquirrelMail required files. */
19 require_once(SM_PATH . 'include/validate.php');
20 require_once(SM_PATH . 'functions/strings.php');
21 require_once(SM_PATH . 'config/config.php');
22
23 displayHtmlHeader( _("Message Details"),
24 "<script language=\"javascript\">\n".
25 "<!--\n".
26 "function printPopup() {\n".
27 "parent.frames[1].focus();\n".
28 "parent.frames[1].print();\n".
29 "}\n".
30 "-->\n".
31 "</script>\n", FALSE );
32
33 sqgetGlobalVar('passed_id', $passed_id, SQ_GET);
34 sqgetGlobalVar('mailbox', $mailbox, SQ_GET);
35
36 echo "<body text=\"$color[8]\" bgcolor=\"$color[3]\" link=\"$color[7]\" vlink=\"$color[7]\" alink=\"$color[7]\">\n" .
37 '<center><b>' .
38 '<form action="' . SM_PATH . 'src/download.php" method="GET">' .
39 '<input type="button" value="' . _("Print") . '" onClick="printPopup()" />&nbsp;&nbsp;'.
40 '<input type="button" value="' . _("Close Window") . '" onClick="window.parent.close()" />&nbsp;&nbsp;'.
41 '<input type="submit" value="' . _("Save Message") . '" /> '.
42 '<input type="hidden" name="mailbox" value="' . urlencode($mailbox) . '" />' .
43 '<input type="hidden" name="passed_id" value="' . urlencode($passed_id) . '" />' .
44 '<input type="hidden" name="ent_id" value="0" />' .
45 '<input type="hidden" name="absolute_dl" value="true" />' .
46 '</form>'.
47 '</b>'.
48 '</body>'.
49 "</html>\n";
50 ?>