home *** CD-ROM | disk | FTP | other *** search
/ PC World 2005 April / PCWorld_2005-04_cd.bin / akce / web / phpnuke / PHP-Nuke-7.5.exe / html / footer.php < prev    next >
PHP Script  |  2004-07-24  |  3KB  |  69 lines

  1. <?php
  2.  
  3. /************************************************************************/
  4. /* PHP-NUKE: Advanced Content Management System                         */
  5. /* ============================================                         */
  6. /*                                                                      */
  7. /* Copyright (c) 2002 by Francisco Burzi                                */
  8. /* http://phpnuke.org                                                   */
  9. /*                                                                      */
  10. /* This program is free software. You can redistribute it and/or modify */
  11. /* it under the terms of the GNU General Public License as published by */
  12. /* the Free Software Foundation; either version 2 of the License.       */
  13. /************************************************************************/
  14.  
  15. if (eregi("footer.php",$_SERVER['PHP_SELF'])) {
  16.     Header("Location: index.php");
  17.     die();
  18. }
  19.  
  20. $footer = 1;
  21.  
  22. function footmsg() {
  23.     global $foot1, $foot2, $foot3, $copyright, $total_time, $start_time;
  24.     $mtime = microtime();
  25.     $mtime = explode(" ",$mtime);
  26.     $mtime = $mtime[1] + $mtime[0];
  27.     $end_time = $mtime;
  28.     $total_time = ($end_time - $start_time);
  29.     $total_time = ""._PAGEGENERATION." ".substr($total_time,0,4)." "._SECONDS."";
  30.     echo "<font class=\"footmsg\">\n";
  31.     if ($foot1 != "") {
  32.     echo "$foot1<br>\n";
  33.     }
  34.     if ($foot2 != "") {
  35.     echo "$foot2<br>\n";
  36.     }
  37.     if ($foot3 != "") {
  38.     echo "$foot3<br>\n";
  39.     }
  40.     // DO NOT REMOVE THE FOLLOWING COPYRIGHT LINE. YOU'RE NOT ALLOWED TO REMOVE NOR EDIT THIS.
  41.     // IF YOU REALLY NEED TO REMOVE IT AND HAVE MY WRITTEN AUTHORIZATION CHECK: http://phpnuke.org/modules.php?name=Commercial_License
  42.     // PLAY FAIR AND SUPPORT THE DEVELOPMENT, PLEASE!
  43.     echo "$copyright<br>$total_time<br>\n</font>\n";
  44. }
  45.  
  46. function foot() {
  47.     global $prefix, $user_prefix, $db, $index, $user, $cookie, $storynum, $user, $cookie, $Default_Theme, $foot1, $foot2, $foot3, $foot4, $home, $module, $name;
  48.     if ($home == 1) {
  49.         blocks(Down);
  50.     }
  51.     if ($module == 1 AND file_exists("modules/$name/copyright.php")) {
  52.         $cpname = ereg_replace("_", " ", $name);
  53.         echo "<div align=\"right\"><a href=\"javascript:openwindow()\">$cpname ©</a></div>";
  54.     }
  55.     if ($module == 1 AND file_exists("modules/$name/admin/panel.php")) {
  56.         echo "<br>";
  57.         OpenTable();
  58.         include("modules/$name/admin/panel.php");
  59.         CloseTable();
  60.     }
  61.     themefooter();
  62.     echo "</body>\n"
  63.         ."</html>";
  64.     die();
  65. }
  66.  
  67. foot();
  68.  
  69. ?>