[1] | 1 | <?php |
---|
| 2 | |
---|
[3] | 3 | /** |
---|
| 4 | * Copyright (C) 2008-2011 FluxBB |
---|
| 5 | * based on code by Rickard Andersson copyright (C) 2002-2008 PunBB |
---|
| 6 | * License: http://www.gnu.org/licenses/gpl.html GPL version 2 or higher |
---|
| 7 | */ |
---|
[1] | 8 | |
---|
| 9 | // Make sure no one attempts to run this script "directly" |
---|
| 10 | if (!defined('PUN')) |
---|
| 11 | exit; |
---|
| 12 | |
---|
| 13 | $tpl_temp = trim(ob_get_contents()); |
---|
| 14 | $tpl_main = str_replace('<pun_main>', $tpl_temp, $tpl_main); |
---|
| 15 | ob_end_clean(); |
---|
| 16 | // END SUBST - <pun_main> |
---|
| 17 | |
---|
| 18 | |
---|
| 19 | // START SUBST - <pun_footer> |
---|
| 20 | ob_start(); |
---|
| 21 | |
---|
| 22 | ?> |
---|
| 23 | <div id="brdfooter" class="block"> |
---|
| 24 | <h2><span><?php echo $lang_common['Board footer'] ?></span></h2> |
---|
| 25 | <div class="box"> |
---|
| 26 | <?php |
---|
| 27 | |
---|
[3] | 28 | if (isset($footer_style) && ($footer_style == 'viewforum' || $footer_style == 'viewtopic') && $is_admmod) |
---|
[1] | 29 | { |
---|
[3] | 30 | echo "\t\t".'<div id="modcontrols" class="inbox">'."\n"; |
---|
[1] | 31 | |
---|
[3] | 32 | if ($footer_style == 'viewforum') |
---|
[1] | 33 | { |
---|
[3] | 34 | echo "\t\t\t".'<dl>'."\n"; |
---|
| 35 | echo "\t\t\t\t".'<dt><strong>'.$lang_forum['Mod controls'].'</strong></dt>'."\n"; |
---|
| 36 | echo "\t\t\t\t".'<dd><span><a href="moderate.php?fid='.$forum_id.'&p='.$p.'">'.$lang_common['Moderate forum'].'</a></span></dd>'."\n"; |
---|
| 37 | echo "\t\t\t".'</dl>'."\n"; |
---|
[1] | 38 | } |
---|
[3] | 39 | else if ($footer_style == 'viewtopic') |
---|
[1] | 40 | { |
---|
[3] | 41 | echo "\t\t\t".'<dl>'."\n"; |
---|
| 42 | echo "\t\t\t\t".'<dt><strong>'.$lang_topic['Mod controls'].'</strong></dt>'."\n"; |
---|
| 43 | echo "\t\t\t\t".'<dd><span><a href="moderate.php?fid='.$forum_id.'&tid='.$id.'&p='.$p.'">'.$lang_common['Moderate topic'].'</a></span></dd>'."\n"; |
---|
| 44 | echo "\t\t\t\t".'<dd><span><a href="moderate.php?fid='.$forum_id.'&move_topics='.$id.'">'.$lang_common['Move topic'].'</a></span></dd>'."\n"; |
---|
[1] | 45 | |
---|
| 46 | if ($cur_topic['closed'] == '1') |
---|
[3] | 47 | echo "\t\t\t\t".'<dd><span><a href="moderate.php?fid='.$forum_id.'&open='.$id.'">'.$lang_common['Open topic'].'</a></span></dd>'."\n"; |
---|
[1] | 48 | else |
---|
[3] | 49 | echo "\t\t\t\t".'<dd><span><a href="moderate.php?fid='.$forum_id.'&close='.$id.'">'.$lang_common['Close topic'].'</a></span></dd>'."\n"; |
---|
[1] | 50 | |
---|
| 51 | if ($cur_topic['sticky'] == '1') |
---|
[3] | 52 | echo "\t\t\t\t".'<dd><span><a href="moderate.php?fid='.$forum_id.'&unstick='.$id.'">'.$lang_common['Unstick topic'].'</a></span></dd>'."\n"; |
---|
[1] | 53 | else |
---|
[3] | 54 | echo "\t\t\t\t".'<dd><span><a href="moderate.php?fid='.$forum_id.'&stick='.$id.'">'.$lang_common['Stick topic'].'</a></span></dd>'."\n"; |
---|
| 55 | |
---|
| 56 | echo "\t\t\t".'</dl>'."\n"; |
---|
[1] | 57 | } |
---|
| 58 | |
---|
[3] | 59 | echo "\t\t\t".'<div class="clearer"></div>'."\n\t\t".'</div>'."\n"; |
---|
[1] | 60 | } |
---|
| 61 | |
---|
| 62 | ?> |
---|
[3] | 63 | <div id="brdfooternav" class="inbox"> |
---|
[1] | 64 | <?php |
---|
| 65 | |
---|
[3] | 66 | echo "\t\t\t".'<div class="conl">'."\n"; |
---|
| 67 | |
---|
| 68 | // Display the "Jump to" drop list |
---|
| 69 | if ($pun_config['o_quickjump'] == '1') |
---|
[1] | 70 | { |
---|
[3] | 71 | // Load cached quick jump |
---|
| 72 | if (file_exists(FORUM_CACHE_DIR.'cache_quickjump_'.$pun_user['g_id'].'.php')) |
---|
| 73 | include FORUM_CACHE_DIR.'cache_quickjump_'.$pun_user['g_id'].'.php'; |
---|
| 74 | |
---|
| 75 | if (!defined('PUN_QJ_LOADED')) |
---|
| 76 | { |
---|
| 77 | if (!defined('FORUM_CACHE_FUNCTIONS_LOADED')) |
---|
| 78 | require PUN_ROOT.'include/cache.php'; |
---|
| 79 | |
---|
| 80 | generate_quickjump_cache($pun_user['g_id']); |
---|
| 81 | require FORUM_CACHE_DIR.'cache_quickjump_'.$pun_user['g_id'].'.php'; |
---|
| 82 | } |
---|
[1] | 83 | } |
---|
| 84 | |
---|
[3] | 85 | echo "\t\t\t".'</div>'."\n"; |
---|
| 86 | |
---|
[1] | 87 | ?> |
---|
[3] | 88 | <div class="conr"> |
---|
| 89 | <?php |
---|
| 90 | |
---|
| 91 | // If no footer style has been specified, we use the default (only copyright/debug info) |
---|
| 92 | $footer_style = isset($footer_style) ? $footer_style : NULL; |
---|
| 93 | |
---|
| 94 | if ($footer_style == 'index') |
---|
| 95 | { |
---|
| 96 | if ($pun_config['o_feed_type'] == '1') |
---|
| 97 | echo "\t\t\t\t".'<p id="feedlinks"><span class="rss"><a href="extern.php?action=feed&type=rss">'.$lang_common['RSS active topics feed'].'</a></span></p>'."\n"; |
---|
| 98 | else if ($pun_config['o_feed_type'] == '2') |
---|
| 99 | echo "\t\t\t\t".'<p id="feedlinks"><span class="atom"><a href="extern.php?action=feed&type=atom">'.$lang_common['Atom active topics feed'].'</a></span></p>'."\n"; |
---|
| 100 | } |
---|
| 101 | else if ($footer_style == 'viewforum') |
---|
| 102 | { |
---|
| 103 | if ($pun_config['o_feed_type'] == '1') |
---|
| 104 | echo "\t\t\t\t".'<p id="feedlinks"><span class="rss"><a href="extern.php?action=feed&fid='.$forum_id.'&type=rss">'.$lang_common['RSS forum feed'].'</a></span></p>'."\n"; |
---|
| 105 | else if ($pun_config['o_feed_type'] == '2') |
---|
| 106 | echo "\t\t\t\t".'<p id="feedlinks"><span class="atom"><a href="extern.php?action=feed&fid='.$forum_id.'&type=atom">'.$lang_common['Atom forum feed'].'</a></span></p>'."\n"; |
---|
| 107 | } |
---|
| 108 | else if ($footer_style == 'viewtopic') |
---|
| 109 | { |
---|
| 110 | if ($pun_config['o_feed_type'] == '1') |
---|
| 111 | echo "\t\t\t\t".'<p id="feedlinks"><span class="rss"><a href="extern.php?action=feed&tid='.$id.'&type=rss">'.$lang_common['RSS topic feed'].'</a></span></p>'."\n"; |
---|
| 112 | else if ($pun_config['o_feed_type'] == '2') |
---|
| 113 | echo "\t\t\t\t".'<p id="feedlinks"><span class="atom"><a href="extern.php?action=feed&tid='.$id.'&type=atom">'.$lang_common['Atom topic feed'].'</a></span></p>'."\n"; |
---|
| 114 | } |
---|
| 115 | |
---|
| 116 | ?> |
---|
| 117 | <p id="poweredby"><?php printf($lang_common['Powered by'], '<a href="http://fluxbb.org/">FluxBB</a>'.(($pun_config['o_show_version'] == '1') ? ' '.$pun_config['o_cur_version'] : '')) ?></p> |
---|
| 118 | </div> |
---|
[1] | 119 | <div class="clearer"></div> |
---|
| 120 | </div> |
---|
| 121 | </div> |
---|
| 122 | </div> |
---|
| 123 | <?php |
---|
| 124 | |
---|
[3] | 125 | // Display debug info (if enabled/defined) |
---|
| 126 | if (defined('PUN_DEBUG')) |
---|
| 127 | { |
---|
| 128 | echo '<p id="debugtime">[ '; |
---|
[1] | 129 | |
---|
[3] | 130 | // Calculate script generation time |
---|
| 131 | $time_diff = sprintf('%.3f', get_microtime() - $pun_start); |
---|
| 132 | echo sprintf($lang_common['Querytime'], $time_diff, $db->get_num_queries()); |
---|
| 133 | |
---|
| 134 | if (function_exists('memory_get_usage')) |
---|
| 135 | { |
---|
| 136 | echo ' - '.sprintf($lang_common['Memory usage'], file_size(memory_get_usage())); |
---|
| 137 | |
---|
| 138 | if (function_exists('memory_get_peak_usage')) |
---|
| 139 | echo ' '.sprintf($lang_common['Peak usage'], file_size(memory_get_peak_usage())); |
---|
| 140 | } |
---|
| 141 | |
---|
| 142 | echo ' ]</p>'."\n"; |
---|
| 143 | } |
---|
| 144 | |
---|
| 145 | |
---|
[1] | 146 | // End the transaction |
---|
| 147 | $db->end_transaction(); |
---|
| 148 | |
---|
| 149 | // Display executed queries (if enabled) |
---|
| 150 | if (defined('PUN_SHOW_QUERIES')) |
---|
| 151 | display_saved_queries(); |
---|
| 152 | |
---|
| 153 | $tpl_temp = trim(ob_get_contents()); |
---|
| 154 | $tpl_main = str_replace('<pun_footer>', $tpl_temp, $tpl_main); |
---|
| 155 | ob_end_clean(); |
---|
| 156 | // END SUBST - <pun_footer> |
---|
| 157 | |
---|
| 158 | |
---|
| 159 | // Close the db connection (and free up any result data) |
---|
[3] | 160 | //$db->close(); |
---|
[1] | 161 | |
---|
| 162 | // Spit out the page |
---|
| 163 | //exit($tpl_main); |
---|
| 164 | |
---|
| 165 | require "pun_integration.php"; |
---|
| 166 | |
---|
| 167 | ?> |
---|