Add ability to show login error from the IMAP server instead of traditional "Unknown...
[squirrelmail.git] / plugins / message_details / message_details_top.php
index 8e97c09c1586281496a895efd9a5bd38c3bdd952..1274890a33333f6c51cabb0a5b2366f640536535 100644 (file)
@@ -1,22 +1,27 @@
 <?php
-/** Message Source  
-*
-* Plugin to view the RFC822 raw message output and the bodystructure of a message
-*
-* Copyright (c) 2002 Marc Groot Koerkamp, The Netherlands
-* Licensed under the GNU GPL. For full terms see the file COPYING.
-* 
-* $Id$
-**/
 
-    chdir('..');
-    require_once ('../src/validate.php');
-    require_once ('../functions/strings.php');
-    require_once ('../config/config.php');
+/**
+ * Message Details plugin - top frame with buttons
+ *
+ * Plugin to view the RFC822 raw message output and the bodystructure of a message
+ *
+ * @author Marc Groot Koerkamp
+ * @copyright 2002 Marc Groot Koerkamp, The Netherlands
+ * @copyright 2002-2014 The SquirrelMail Project Team
+ * @license http://opensource.org/licenses/gpl-license.php GNU Public License
+ * @version $Id$
+ * @package plugins
+ * @subpackage message_details
+ */
 
+/**
+ * Include the SquirrelMail initialization file.
+ */
+require('../../include/init.php');
+require(SM_PATH . 'functions/forms.php');
 
-displayHtmlHeader( _("Message details"),
-             "<script language=\"javascript\">\n".
+displayHtmlHeader( _("Message Details"),
+             "<script type=\"text/javascript\">\n".
              "<!--\n".
              "function printPopup() {\n".
                 "parent.frames[1].focus();\n".
@@ -25,16 +30,22 @@ displayHtmlHeader( _("Message details"),
              "-->\n".
              "</script>\n", FALSE );
 
+sqgetGlobalVar('passed_id', $passed_id, SQ_GET, NULL, SQ_TYPE_BIGINT);
+if (!sqgetGlobalVar('passed_ent_id', $passed_ent_id, SQ_GET))
+    $passed_ent_id = 0;
+sqgetGlobalVar('mailbox', $mailbox, SQ_GET);
 
 echo "<body text=\"$color[8]\" bgcolor=\"$color[3]\" link=\"$color[7]\" vlink=\"$color[7]\" alink=\"$color[7]\">\n" .
-     '<center><b>'.
-     '<FORM name=rfc822 action="message_details_download.php?savemessage=1&passed_id='."$passed_id".'" METHOD=POST>' .     
-     '<input type="button" value="' . _("Print") . '" onClick="printPopup()">&nbsp&nbsp '.
-     '<input type="button" value="' . _("Close Window") . '" onClick="window.parent.close()">&nbsp&nbsp'.
-     '<input type="submit" value="' . _("Save Message") . '"> '.
-     '<input type="hidden" name="mailbox" value="'. "$mailbox" . '"> ' .
-     '</form>'.
-     '</b>'.
+     '<div style="text-align: center;">' .
+     addForm(SM_PATH . 'src/download.php', 'GET').
+     addHidden('mailbox', $mailbox).
+     addHidden('passed_id', $passed_id).
+     addHidden('ent_id', $passed_ent_id).
+     addHidden('absolute_dl', 'true').
+     (checkForJavascript() ?
+     '<input type="button" value="' . _("Print") . '" onclick="printPopup()" />&nbsp;&nbsp;'.
+     '<input type="button" value="' . _("Close Window") . '" onclick="window.parent.close()" />&nbsp;&nbsp;' :'').
+     addSubmit(_("Save Message")).
+     '</form></div>'.
      '</body>'.
      "</html>\n";
-?>
\ No newline at end of file