Add radio button group widget type SMOPT_TYPE_STRLIST_RADIO
[squirrelmail.git] / src / printer_friendly_main.php
index 81c65a9b45148258ab1bc92682fb592c640d1a24..8c0c03d6e4d522e013beeb0eece54a562e188504 100644 (file)
@@ -3,40 +3,43 @@
 /**
  * printer_friendly frameset
  *
- * @copyright (c) 1999-2004 The SquirrelMail Project Team
+ * @copyright © 1999-2007 The SquirrelMail Project Team
  * @license http://opensource.org/licenses/gpl-license.php GNU Public License
  * @version $Id$
  * @package squirrelmail
  */
 
+/** This is the printer_friendly_main page */
+define('PAGE_NAME', 'printer_friendly_main');
+
 /**
- * Path for SquirrelMail required files.
- * @ignore
+ * Include the SquirrelMail initialization file.
  */
-define('SM_PATH','../');
-
-/* SquirrelMail required files. */
-require_once(SM_PATH . 'include/validate.php');
+include('../include/init.php');
 
 /* get those globals into gear */
-global $color;
 if ( ! sqgetGlobalVar('passed_ent_id',$passed_ent_id,SQ_GET))
     $passed_ent_id = 0;
 if ( ! sqgetGlobalVar('mailbox',$mailbox,SQ_GET) ||
      ! sqgetGlobalVar('passed_id',$passed_id,SQ_GET)) {
-    error_box(_("Invalid URL"),$color);
+    error_box(_("Invalid URL"));
 } else {
     $passed_id= (int) $passed_id;
+    $view_unsafe_images = (bool) $_GET['view_unsafe_images'];
+    sqgetGlobalVar('show_html_default', $show_html_default, SQ_FORM);
 /* end globals */
     displayHtmlHeader( _("Printer Friendly"), '', false, true );
-    echo '<frameset rows="60, *">' . "\n";
-    echo '<frame src="printer_friendly_top.php" name="top_frame" '
-        . 'scrolling="no" noresize="noresize" frameborder="0" />' . "\n";
-    echo '<frame src="printer_friendly_bottom.php?passed_ent_id='
-        . urlencode($passed_ent_id) . '&amp;mailbox=' . urlencode($mailbox) 
-        . '&amp;passed_id=' . $passed_id
-        . '" name="bottom_frame" frameborder="0" />' . "\n";
-    echo "</frameset>\n";
+    
+    $oErrorHandler->setDelayedErrors(true);
+    
+    $url = 'printer_friendly_bottom.php?passed_ent_id=' .
+           urlencode($passed_ent_id) . '&amp;mailbox=' . urlencode($mailbox) .
+           '&amp;passed_id=' . $passed_id .
+           '&amp;view_unsafe_images='.$view_unsafe_images .
+           '&amp;show_html_default='.$show_html_default;
+           
+    $oTemplate->assign('printer_friendly_url', $url);
+
+    $oTemplate->display('printer_friendly_main.tpl');
+
 }
-?>
-</html>