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 / includes / page_tail.php < prev    next >
PHP Script  |  2004-01-29  |  4KB  |  97 lines

  1. <?php
  2. # $Author: cs $ 
  3. # $Date: 2003/08/03 16:57:52 $
  4. /***************************************************************************
  5.  *                              page_tail.php
  6.  *                            -------------------
  7.  *   begin                : Saturday, Feb 13, 2001
  8.  *   copyright            : (C) 2001 The phpBB Group
  9.  *   email                : support@phpbb.com
  10.  *
  11.  *   $Id: page_tail.php,v 1.3 2003/08/03 16:57:52 cs Exp $
  12.  *
  13.  *
  14.  ***************************************************************************/
  15. /***************************************************************************
  16. * phpbb2 forums port version 2.0.5 (c) 2003 - Nuke Cops (http://nukecops.com)
  17. *
  18. * Ported by Nuke Cops to phpbb2 standalone 2.0.5 Test
  19. * and debugging completed by the Elite Nukers and site members.
  20. *
  21. * You run this package at your sole risk. Nuke Cops and affiliates cannot
  22. * be held liable if anything goes wrong. You are advised to test this
  23. * package on a development system. Backup everything before implementing
  24. * in a production environment. If something goes wrong, you can always
  25. * backout and restore your backups.
  26. *
  27. * Installing and running this also means you agree to the terms of the AUP
  28. * found at Nuke Cops.
  29. *
  30. * This is version 2.0.5 of the phpbb2 forum port for PHP-Nuke. Work is based
  31. * on Tom Nitzschner's forum port version 2.0.6. Tom's 2.0.6 port was based
  32. * on the phpbb2 standalone version 2.0.3. Our version 2.0.5 from Nuke Cops is
  33. * now reflecting phpbb2 standalone 2.0.5 that fixes some bugs and the
  34. * invalid_session error message.
  35. ***************************************************************************/
  36. /***************************************************************************
  37.  *   This file is part of the phpBB2 port to Nuke 6.0 (c) copyright 2002
  38.  *   by Tom Nitzschner (tom@toms-home.com)
  39.  *   http://bbtonuke.sourceforge.net (or http://www.toms-home.com)
  40.  *
  41.  *   As always, make a backup before messing with anything. All code
  42.  *   release by me is considered sample code only. It may be fully
  43.  *   functual, but you use it at your own risk, if you break it,
  44.  *   you get to fix it too. No waranty is given or implied.
  45.  *
  46.  *   Please post all questions/request about this port on http://bbtonuke.sourceforge.net first,
  47.  *   then on my site. All original header code and copyright messages will be maintained
  48.  *   to give credit where credit is due. If you modify this, the only requirement is
  49.  *   that you also maintain all original copyright messages. All my work is released
  50.  *   under the GNU GENERAL PUBLIC LICENSE. Please see the README for more information.
  51.  *
  52.  ***************************************************************************/
  53. /***************************************************************************
  54.  *
  55.  *   This program is free software; you can redistribute it and/or modify
  56.  *   it under the terms of the GNU General Public License as published by
  57.  *   the Free Software Foundation; either version 2 of the License, or
  58.  *   (at your option) any later version.
  59.  *
  60.  ***************************************************************************/
  61.  
  62. if ( !defined('IN_PHPBB') )
  63. {
  64.         die('Hacking attempt');
  65. }
  66.  
  67. //
  68. // Show the overall footer.
  69. //
  70. global $nukeuser, $popup;
  71. $admin_link = ( $userdata['user_level'] == ADMIN ) ? '<a href="' . append_sid("modules/Forums/admin/index.$phpEx?admin=1") . '">' . $lang['Admin_panel'] . '</a><br /><br />' : '';
  72.  
  73. $template->set_filenames(array(
  74.         'overall_footer' => ( empty($gen_simple_header) ) ? 'overall_footer.tpl' : 'simple_footer.tpl')
  75. );
  76.  
  77. $template->assign_vars(array(
  78.         'PHPBB_VERSION' => '2' . $board_config['version'],
  79.         'TRANSLATION_INFO' => ( isset($lang['TRANSLATION_INFO']) ) ? $lang['TRANSLATION_INFO'] : '',
  80.         'ADMIN_LINK' => $admin_link)
  81. );
  82.  
  83. $template->pparse('overall_footer');
  84. CloseTable();
  85. //
  86. // Close our DB connection.
  87. //
  88. $db->sql_close();
  89.  
  90. //
  91. // Compress buffered output if required and send to browser
  92. //
  93. if ($popup != "1") {
  94.     include("footer.php");
  95.     }
  96. # $log$
  97. ?>