]> code.citadel.org Git - citadel.git/blobdiff - ctdlphp/ctdlheader.php
* fleshed out the message headers a bit
[citadel.git] / ctdlphp / ctdlheader.php
index 590fc6992a534d6e7974287760a683f75136fc81..94f14417d70d2ddac477b6aa62abff795f039762 100644 (file)
@@ -1,16 +1,29 @@
 <?PHP
 
+// $Id$
+//
+// Header and footer code to be included on every page.  Not only does it
+// contain some common markup, but it also calls some code glue that holds
+// the session together.
+//
+// Copyright (c) 2003 by Art Cancro <ajc@uncensored.citadel.org>
+// This program is released under the terms of the GNU General Public License.
+
+
+// All of the back-end magic gets included from here.  The rest of the
+// pages in the system then only have to include ctdlheader.php (since it
+// is required) and they get the others automatically.
+//
 include "ctdlsession.php";
 include "ctdlprotocol.php";
+include "ctdlelements.php";
 
 function bbs_page_header() {
 
-       global $session;
-
+       // Make sure we're connected to Citadel.  Do not remove this!!
        establish_citadel_session();
 
-       echo <<<CITADEL_HEADER_DATA
-
+       echo <<<LITERAL
 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
 <html>
 <head>
@@ -18,7 +31,18 @@ function bbs_page_header() {
        <meta name="Description" content="Citadel BBS">
        <meta name="Keywords" content="citadel,bbs">
        <meta name="MSSmartTagsPreventParsing" content="TRUE">
-       <title>FIXME NAME BBS</title>
+       <title>
+LITERAL;
+
+       if ($_SESSION["serv_humannode"]) {
+               echo $_SESSION["serv_humannode"] ;
+       }
+       else {
+               echo "BBS powered by Citadel" ;
+       }
+
+       echo <<<LITERAL
+</title>
 </head>
 
 <body
@@ -29,32 +53,24 @@ function bbs_page_header() {
        alink="#DD0000"
 >
 
-Citadel test PHP thing.<BR>
-CITADEL_HEADER_DATA;
-
-echo "Your session ID is ", $session, "<BR>\n";
-echo "Dude, we're in ", `pwd`, "<BR>";
-echo "<A HREF=\"logout.php\">Log out</A><HR>";
-flush();
 
-test_for_echo();
+LITERAL;
 
+       echo '<TABLE BORDER=0 WIDTH=100%>';
+       echo '<TR>';
+       echo '<TD>' . $_SESSION["serv_humannode"] . '</TD>' ;
+       echo '<TD>' . $_SESSION["username"] . '</TD>' ;
+       echo '<TD>' . $_SESSION["room"] . '</TD>' ;
+       echo '<TD ALIGN=RIGHT><A HREF="logout.php">Log out</A></TD>' ;
+       echo '</TR></TABLE><HR>';
 }
 
 
 function bbs_page_footer() {
-       global $clientsocket;
-
        echo "<HR>";
-
-       if (!fclose($clientsocket)) {
-               echo "Error closing client socket.<BR>\n";
-       }
-
-       echo "Copyright &copy; 2003 by The SCO Group.<BR>\n";
+       echo "Powered by Citadel.  And a few cups of coffee.<BR>\n";
        echo "</BODY></HTML>\n";
-
-
 }
 
+
 ?>