Source for file message_details_top.php

Documentation is available at message_details_top.php

  1. <?php
  2.  
  3. /**
  4.  * Message Details plugin - top frame with buttons
  5.  *
  6.  * Plugin to view the RFC822 raw message output and the bodystructure of a message
  7.  *
  8.  * @author Marc Groot Koerkamp
  9.  * @copyright 2002 Marc Groot Koerkamp, The Netherlands
  10.  * @copyright 2002-2020 The SquirrelMail Project Team
  11.  * @license http://opensource.org/licenses/gpl-license.php GNU Public License
  12.  * @version $Id: message_details_top.php 14845 2020-01-07 08:09:34Z pdontthink $
  13.  * @package plugins
  14.  * @subpackage message_details
  15.  */
  16.  
  17. /**
  18.  * Include the SquirrelMail initialization file.
  19.  */
  20. require('../../include/init.php');
  21. require(SM_PATH 'functions/forms.php');
  22.  
  23. displayHtmlHeader_("Message Details"),
  24.              "<script type=\"text/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_idSQ_GETNULLSQ_TYPE_BIGINT);
  34. if (!sqgetGlobalVar('passed_ent_id'$passed_ent_idSQ_GET))
  35.     $passed_ent_id 0;
  36. sqgetGlobalVar('mailbox'$mailboxSQ_GET);
  37.  
  38. echo "<body text=\"$color[8]\" bgcolor=\"$color[3]\" link=\"$color[7]\" vlink=\"$color[7]\" alink=\"$color[7]\">\n.
  39.      '<div style="text-align: center;">' .
  40.      addForm(SM_PATH 'src/download.php''GET').
  41.      addHidden('mailbox'$mailbox).
  42.      addHidden('passed_id'$passed_id).
  43.      addHidden('ent_id'$passed_ent_id).
  44.      addHidden('absolute_dl''true').
  45.      (checkForJavascript(?
  46.      '<input type="button" value="' _("Print"'" onclick="printPopup()" />&nbsp;&nbsp;'.
  47.      '<input type="button" value="' _("Close Window"'" onclick="window.parent.close()" />&nbsp;&nbsp;' :'').
  48.      addSubmit(_("Save Message")).
  49.      '</form></div>'.
  50.      '</body>'.
  51.      "</html>\n";

Documentation generated on Mon, 13 Jan 2020 04:23:06 +0100 by phpDocumentor 1.4.3