Added basic framework for plugin support. Very little code so far. Two
[squirrelmail.git] / functions / page_header.php
index 3145a306efdf6ee7dae63f37d03dfa4eb618c49b..1af6a86f32de62f0b4baad6b7e156204d13ce1d6 100644 (file)
@@ -14,6 +14,8 @@
       include ("../functions/prefs.php");
    if (!isset($i18n_php))
       include ("../functions/i18n.php");
+   if (!isset($plugin_php))
+      include ("../functions/plugin.php");
 
    // Check to see if gettext is installed
    if (function_exists("_")) {
          bindtextdomain("squirrelmail", "../locale/");
          textdomain("squirrelmail");
          $default_charset = $languages[$squirrelmail_language]["CHARSET"];
-         
-         // Setting cookie to use on the login screen the next time the
-         // same user logs in.
-         #setcookie("squirrelmail_language", $squirrelmail_language, 
-         #          time()+2592000);
-         $squirrelmail_language = $language;
       }
    } else {
       function _($string) {
@@ -54,6 +50,9 @@
                 $theme_css);
         echo "\n";
       }
+      
+      do_hook ("generic_header");
+
       echo "<TITLE>$title</TITLE>";
       echo "</HEAD>\n\n";
    }
@@ -86,6 +85,9 @@
       echo "         <A HREF=\"folders.php\">" . _("Folders") . "</A>&nbsp;&nbsp;\n";
       echo "         <A HREF=\"options.php\">" . _("Options") . "</A>&nbsp;&nbsp;\n";
       echo "         <A HREF=\"webmail.php?right_frame=help.php\" TARGET=\"Help Me!\">" . _("Help") . "</A>&nbsp&nbsp";
+
+      do_hook("menuline");
+
       echo "      </TD><TD ALIGN=right WIDTH=\"30%\">\n";
       echo "         <A HREF=\"http://squirrelmail.sourceforge.net/index.php3?from=1\" TARGET=\"_top\">SquirrelMail</A>\n";
       echo "      </TD>\n";