Better hook placement
[squirrelmail.git] / src / webmail.php
index 7deb64b4f0d3743048ebd2a5fe6301c9e1c32172..a2bc1c2e670d2454e360ec9c7ab06614331ad0ba 100644 (file)
@@ -1,5 +1,4 @@
 <?php
-
 /**
  * webmail.php -- Displays the main frameset
  *
  */
 
 /**
- * Path for SquirrelMail required files.
- * @ignore
+ * Include the SquirrelMail initialization file.
  */
-define('SM_PATH','../');
-
-/* SquirrelMail required files. */
-require_once(SM_PATH . 'functions/strings.php');
-require_once(SM_PATH . 'config/config.php');
-require_once(SM_PATH . 'functions/prefs.php');
-require_once(SM_PATH . 'functions/imap.php');
-require_once(SM_PATH . 'functions/plugin.php');
-require_once(SM_PATH . 'functions/i18n.php');
-require_once(SM_PATH . 'functions/auth.php');
-require_once(SM_PATH . 'functions/global.php');
-
-if (!function_exists('sqm_baseuri')){
-    require_once(SM_PATH . 'functions/display_messages.php');
-}
-$base_uri = sqm_baseuri();
-
-sqsession_is_active();
-
-sqgetGlobalVar('username', $username, SQ_SESSION);
-sqgetGlobalVar('delimiter', $delimiter, SQ_SESSION);
-sqgetGlobalVar('onetimepad', $onetimepad, SQ_SESSION);
+require('../include/init.php');
 
 if (sqgetGlobalVar('sort', $sort)) {
     $sort = (int) $sort;
@@ -54,66 +31,14 @@ if (!sqgetGlobalVar('mailbox', $mailbox)) {
 
 sqgetGlobalVar('right_frame', $right_frame, SQ_GET);
 
-if ( isset($_SESSION['session_expired_post']) ) {
-    sqsession_unregister('session_expired_post');
-}
-if(!sqgetGlobalVar('mailto', $mailto)) {
-    $mailto = '';
-}
-
-is_logged_in();
-
-do_hook('webmail_top');
-
-/**
- * We'll need this to later have a noframes version
- *
- * Check if the user has a language preference, but no cookie.
- * Send him a cookie with his language preference, if there is
- * such discrepancy.
- */
-$my_language = getPref($data_dir, $username, 'language');
-if ($my_language != $squirrelmail_language) {
-    sqsetcookie('squirrelmail_language', $my_language, time()+2592000, $base_uri);
-}
-
-$err=set_up_language(getPref($data_dir, $username, 'language'));
-
-$output = "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Frameset//EN\"\n".
-          "  \"http://www.w3.org/TR/1999/REC-html401-19991224/frameset.dtd\">\n".
-          "<html><head>\n" .
-          "<meta name=\"robots\" content=\"noindex,nofollow\">\n" .
-          "<title>$org_title</title>\n".
-          "</head>";
-
-// Japanese translation used without mbstring support
-if ($err==2) {
-    echo $output.
-         "<body>\n".
-         "<p>You need to have PHP installed with the multibyte string function \n".
-         "enabled (using configure option --enable-mbstring).</p>\n".
-         "<p>System assumed that you accidently switched to Japanese translation \n".
-         "and reverted your language preference to English.</p>\n".
-         "<p>Please refresh this page in order to use webmail.</p>\n".
-         "</body></html>";
-    return;
-}
-
-$left_size = getPref($data_dir, $username, 'left_size');
-$location_of_bar = getPref($data_dir, $username, 'location_of_bar');
-
-if (isset($languages[$squirrelmail_language]['DIR']) &&
-    strtolower($languages[$squirrelmail_language]['DIR']) == 'rtl') {
-    $temp_location_of_bar = 'right';
+if(!sqgetGlobalVar('mailtodata', $mailtodata)) {
+    $mailtourl = 'mailtodata='.urlencode($mailtodata);
 } else {
-    $temp_location_of_bar = 'left';
+    $mailtourl = '';
 }
 
-if ($location_of_bar == '') {
-    $location_of_bar = $temp_location_of_bar;
-}
-$temp_location_of_bar = '';
-
+// Determine the size of the left frame
+$left_size = getPref($data_dir, $username, 'left_size');
 if ($left_size == "") {
     if (isset($default_left_size)) {
          $left_size = $default_left_size;
@@ -123,13 +48,19 @@ if ($left_size == "") {
     }
 }
 
-if ($location_of_bar == 'right') {
-    $output .= "<frameset cols=\"*, $left_size\" id=\"fs1\">\n";
+// Determine where the navigation frame should be
+$location_of_bar = getPref($data_dir, $username, 'location_of_bar');
+if (isset($languages[$squirrelmail_language]['DIR']) &&
+    strtolower($languages[$squirrelmail_language]['DIR']) == 'rtl') {
+    $temp_location_of_bar = 'right';
+} else {
+    $temp_location_of_bar = 'left';
 }
-else {
-    $output .= "<frameset cols=\"$left_size, *\" id=\"fs1\">\n";
+if ($location_of_bar == '') {
+    $location_of_bar = $temp_location_of_bar;
 }
 
+// Determine the main frame URL
 /*
  * There are three ways to call webmail.php
  * 1.  webmail.php
@@ -145,17 +76,14 @@ else {
  * The test for // should catch any attempt to include off-site webpages into
  * our frameset.
  */
-
 if (empty($right_frame) || (strpos(urldecode($right_frame), '//') !== false)) {
     $right_frame = '';
 }
-
 if ( strpos($right_frame,'?') ) {
     $right_frame_file = substr($right_frame,0,strpos($right_frame,'?'));
 } else {
     $right_frame_file = $right_frame;
 }
-
 switch($right_frame) {
     case 'right_main.php':
         $right_frame_url = "right_main.php?mailbox=".urlencode($mailbox)
@@ -169,7 +97,7 @@ switch($right_frame) {
         $right_frame_url = 'folders.php';
         break;
     case 'compose.php':
-        $right_frame_url = 'compose.php?' . $mailto;
+        $right_frame_url = 'compose.php?' . $mailtourl;
         break;
     case '':
         $right_frame_url = 'right_main.php';
@@ -177,25 +105,18 @@ switch($right_frame) {
     default:
         $right_frame_url =  urlencode($right_frame);
         break;
-} 
+}
 
-$left_frame  = '<frame src="left_main.php" name="left" frameborder="1" title="'.
-               _("Folder List") ."\" />\n";
-$right_frame = '<frame src="'.$right_frame_url.'" name="right" frameborder="1" title="'.
-               _("Message List") ."\" />\n";
+$oErrorHandler->setDelayedErrors(true);
 
-if ($location_of_bar == 'right') {
-    $output .= $right_frame . $left_frame;
-}
-else {
-    $output .= $left_frame . $right_frame;
-}
-$ret = concat_hook_function('webmail_bottom', $output);
-if($ret != '') {
-    $output = $ret;
-}
-echo $output;
+$oTemplate->assign('nav_size', $left_size);
+$oTemplate->assign('nav_on_left', $location_of_bar=='left');
+$oTemplate->assign('right_frame_url', $right_frame_url);
+
+do_hook('webmail_top', $null);
+
+displayHtmlHeader($org_title, '', false, true);
+
+$oTemplate->display('webmail.tpl');
 
-?>
-</frameset>
-</html>
+$oTemplate->display('footer.tpl');