source: branches/rsr.v5.1.dev/web/punbb/index.php @ 3

Last change on this file since 3 was 3, checked in by dj3c1t, 12 years ago

passage a Fluxbb 1.4.7

File size: 10.5 KB
Line 
1<?php
2
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 */
8
9define('PUN_ROOT', dirname(__FILE__).'/');
10require PUN_ROOT.'include/common.php';
11
12
13if ($pun_user['g_read_board'] == '0')
14        message($lang_common['No view']);
15
16
17// Load the index.php language file
18require PUN_ROOT.'lang/'.$pun_user['language'].'/index.php';
19
20// Get list of forums and topics with new posts since last visit
21if (!$pun_user['is_guest'])
22{
23        $result = $db->query('SELECT t.forum_id, t.id, t.last_post FROM '.$db->prefix.'topics AS t INNER JOIN '.$db->prefix.'forums AS f ON f.id=t.forum_id LEFT JOIN '.$db->prefix.'forum_perms AS fp ON (fp.forum_id=f.id AND fp.group_id='.$pun_user['g_id'].') WHERE (fp.read_forum IS NULL OR fp.read_forum=1) AND t.last_post>'.$pun_user['last_visit'].' AND t.moved_to IS NULL') or error('Unable to fetch new topics', __FILE__, __LINE__, $db->error());
24
25        $new_topics = array();
26        while ($cur_topic = $db->fetch_assoc($result))
27                $new_topics[$cur_topic['forum_id']][$cur_topic['id']] = $cur_topic['last_post'];
28
29        $tracked_topics = get_tracked_topics();
30}
31
32if ($pun_config['o_feed_type'] == '1')
33        $page_head = array('feed' => '<link rel="alternate" type="application/rss+xml" href="extern.php?action=feed&amp;type=rss" title="'.$lang_common['RSS active topics feed'].'" />');
34else if ($pun_config['o_feed_type'] == '2')
35        $page_head = array('feed' => '<link rel="alternate" type="application/atom+xml" href="extern.php?action=feed&amp;type=atom" title="'.$lang_common['Atom active topics feed'].'" />');
36
37$forum_actions = array();
38
39// Display a "mark all as read" link
40if (!$pun_user['is_guest'])
41        $forum_actions[] = '<a href="misc.php?action=markread">'.$lang_common['Mark all as read'].'</a>';
42
43$page_title = array(pun_htmlspecialchars($pun_config['o_board_title']));
44define('PUN_ALLOW_INDEX', 1);
45define('PUN_ACTIVE_PAGE', 'index');
46require PUN_ROOT.'header.php';
47
48// Print the categories and forums
49$result = $db->query('SELECT c.id AS cid, c.cat_name, f.id AS fid, f.forum_name, f.forum_desc, f.redirect_url, f.moderators, f.num_topics, f.num_posts, f.last_post, f.last_post_id, f.last_poster FROM '.$db->prefix.'categories AS c INNER JOIN '.$db->prefix.'forums AS f ON c.id=f.cat_id LEFT JOIN '.$db->prefix.'forum_perms AS fp ON (fp.forum_id=f.id AND fp.group_id='.$pun_user['g_id'].') WHERE fp.read_forum IS NULL OR fp.read_forum=1 ORDER BY c.disp_position, c.id, f.disp_position', true) or error('Unable to fetch category/forum list', __FILE__, __LINE__, $db->error());
50
51$cur_category = 0;
52$cat_count = 0;
53$forum_count = 0;
54while ($cur_forum = $db->fetch_assoc($result))
55{
56        $moderators = '';
57
58        if ($cur_forum['cid'] != $cur_category) // A new category since last iteration?
59        {
60                if ($cur_category != 0)
61                        echo "\t\t\t".'</tbody>'."\n\t\t\t".'</table>'."\n\t\t".'</div>'."\n\t".'</div>'."\n".'</div>'."\n\n";
62
63                ++$cat_count;
64                $forum_count = 0;
65
66?>
67<div id="idx<?php echo $cat_count ?>" class="blocktable">
68        <h2><span><?php echo pun_htmlspecialchars($cur_forum['cat_name']) ?></span></h2>
69        <div class="box">
70                <div class="inbox">
71                        <table cellspacing="0">
72                        <thead>
73                                <tr>
74                                        <th class="tcl" scope="col"><?php echo $lang_common['Forum'] ?></th>
75                                        <th class="tc2" scope="col"><?php echo $lang_index['Topics'] ?></th>
76                                        <th class="tc3" scope="col"><?php echo $lang_common['Posts'] ?></th>
77                                        <th class="tcr" scope="col"><?php echo $lang_common['Last post'] ?></th>
78                                </tr>
79                        </thead>
80                        <tbody>
81<?php
82
83                $cur_category = $cur_forum['cid'];
84        }
85
86        ++$forum_count;
87        $item_status = ($forum_count % 2 == 0) ? 'roweven' : 'rowodd';
88        $forum_field_new = '';
89        $icon_type = 'icon';
90
91        // Are there new posts since our last visit?
92        if (!$pun_user['is_guest'] && $cur_forum['last_post'] > $pun_user['last_visit'] && (empty($tracked_topics['forums'][$cur_forum['fid']]) || $cur_forum['last_post'] > $tracked_topics['forums'][$cur_forum['fid']]))
93        {
94                // There are new posts in this forum, but have we read all of them already?
95                foreach ($new_topics[$cur_forum['fid']] as $check_topic_id => $check_last_post)
96                {
97                        if ((empty($tracked_topics['topics'][$check_topic_id]) || $tracked_topics['topics'][$check_topic_id] < $check_last_post) && (empty($tracked_topics['forums'][$cur_forum['fid']]) || $tracked_topics['forums'][$cur_forum['fid']] < $check_last_post))
98                        {
99                                $item_status .= ' inew';
100                                $forum_field_new = '<span class="newtext">[ <a href="search.php?action=show_new&amp;fid='.$cur_forum['fid'].'">'.$lang_common['New posts'].'</a> ]</span>';
101                                $icon_type = 'icon icon-new';
102
103                                break;
104                        }
105                }
106        }
107
108        // Is this a redirect forum?
109        if ($cur_forum['redirect_url'] != '')
110        {
111                $forum_field = '<h3><span class="redirtext">'.$lang_index['Link to'].'</span> <a href="'.pun_htmlspecialchars($cur_forum['redirect_url']).'" title="'.$lang_index['Link to'].' '.pun_htmlspecialchars($cur_forum['redirect_url']).'">'.pun_htmlspecialchars($cur_forum['forum_name']).'</a></h3>';
112                $num_topics = $num_posts = '-';
113                $item_status .= ' iredirect';
114                $icon_type = 'icon';
115        }
116        else
117        {
118                $forum_field = '<h3><a href="viewforum.php?id='.$cur_forum['fid'].'">'.pun_htmlspecialchars($cur_forum['forum_name']).'</a>'.(!empty($forum_field_new) ? ' '.$forum_field_new : '').'</h3>';
119                $num_topics = $cur_forum['num_topics'];
120                $num_posts = $cur_forum['num_posts'];
121        }
122
123        if ($cur_forum['forum_desc'] != '')
124                $forum_field .= "\n\t\t\t\t\t\t\t\t".'<div class="forumdesc">'.$cur_forum['forum_desc'].'</div>';
125
126        // If there is a last_post/last_poster
127        if ($cur_forum['last_post'] != '')
128                $last_post = '<a href="viewtopic.php?pid='.$cur_forum['last_post_id'].'#p'.$cur_forum['last_post_id'].'">'.format_time($cur_forum['last_post']).'</a> <span class="byuser">'.$lang_common['by'].' '.pun_htmlspecialchars($cur_forum['last_poster']).'</span>';
129        else if ($cur_forum['redirect_url'] != '')
130                $last_post = '- - -';
131        else
132                $last_post = $lang_common['Never'];
133
134        if ($cur_forum['moderators'] != '')
135        {
136                $mods_array = unserialize($cur_forum['moderators']);
137                $moderators = array();
138
139                foreach ($mods_array as $mod_username => $mod_id)
140                {
141                        if ($pun_user['g_view_users'] == '1')
142                                $moderators[] = '<a href="profile.php?id='.$mod_id.'">'.pun_htmlspecialchars($mod_username).'</a>';
143                        else
144                                $moderators[] = pun_htmlspecialchars($mod_username);
145                }
146
147                $moderators = "\t\t\t\t\t\t\t\t".'<p class="modlist">(<em>'.$lang_common['Moderated by'].'</em> '.implode(', ', $moderators).')</p>'."\n";
148        }
149
150?>
151                                <tr class="<?php echo $item_status ?>">
152                                        <td class="tcl">
153                                                <div class="<?php echo $icon_type ?>"><div class="nosize"><?php echo forum_number_format($forum_count) ?></div></div>
154                                                <div class="tclcon">
155                                                        <div>
156                                                                <?php echo $forum_field."\n".$moderators ?>
157                                                        </div>
158                                                </div>
159                                        </td>
160                                        <td class="tc2"><?php echo forum_number_format($num_topics) ?></td>
161                                        <td class="tc3"><?php echo forum_number_format($num_posts) ?></td>
162                                        <td class="tcr"><?php echo $last_post ?></td>
163                                </tr>
164<?php
165
166}
167
168// Did we output any categories and forums?
169if ($cur_category > 0)
170        echo "\t\t\t".'</tbody>'."\n\t\t\t".'</table>'."\n\t\t".'</div>'."\n\t".'</div>'."\n".'</div>'."\n\n";
171else
172        echo '<div id="idx0" class="block"><div class="box"><div class="inbox"><p>'.$lang_index['Empty board'].'</p></div></div></div>';
173
174// Collect some statistics from the database
175if (file_exists(FORUM_CACHE_DIR.'cache_users_info.php'))
176        include FORUM_CACHE_DIR.'cache_users_info.php';
177
178if (!defined('PUN_USERS_INFO_LOADED'))
179{
180        if (!defined('FORUM_CACHE_FUNCTIONS_LOADED'))
181                require PUN_ROOT.'include/cache.php';
182
183        generate_users_info_cache();
184        require FORUM_CACHE_DIR.'cache_users_info.php';
185}
186
187$result = $db->query('SELECT SUM(num_topics), SUM(num_posts) FROM '.$db->prefix.'forums') or error('Unable to fetch topic/post count', __FILE__, __LINE__, $db->error());
188list($stats['total_topics'], $stats['total_posts']) = $db->fetch_row($result);
189
190if ($pun_user['g_view_users'] == '1')
191        $stats['newest_user'] = '<a href="profile.php?id='.$stats['last_user']['id'].'">'.pun_htmlspecialchars($stats['last_user']['username']).'</a>';
192else
193        $stats['newest_user'] = pun_htmlspecialchars($stats['last_user']['username']);
194
195if (!empty($forum_actions))
196{
197
198?>
199<div class="linksb">
200        <div class="inbox crumbsplus">
201                <p class="subscribelink clearb"><?php echo implode(' - ', $forum_actions); ?></p>
202        </div>
203</div>
204<?php
205
206}
207
208?>
209<div id="brdstats" class="block">
210        <h2><span><?php echo $lang_index['Board info'] ?></span></h2>
211        <div class="box">
212                <div class="inbox">
213                        <dl class="conr">
214                                <dt><strong><?php echo $lang_index['Board stats'] ?></strong></dt>
215                                <dd><span><?php printf($lang_index['No of users'], '<strong>'.forum_number_format($stats['total_users']).'</strong>') ?></span></dd>
216                                <dd><span><?php printf($lang_index['No of topics'], '<strong>'.forum_number_format($stats['total_topics']).'</strong>') ?></span></dd>
217                                <dd><span><?php printf($lang_index['No of posts'], '<strong>'.forum_number_format($stats['total_posts']).'</strong>') ?></span></dd>
218                        </dl>
219                        <dl class="conl">
220                                <dt><strong><?php echo $lang_index['User info'] ?></strong></dt>
221                                <dd><span><?php printf($lang_index['Newest user'], $stats['newest_user']) ?></span></dd>
222<?php
223
224if ($pun_config['o_users_online'] == '1')
225{
226        // Fetch users online info and generate strings for output
227        $num_guests = 0;
228        $users = array();
229        $result = $db->query('SELECT user_id, ident FROM '.$db->prefix.'online WHERE idle=0 ORDER BY ident', true) or error('Unable to fetch online list', __FILE__, __LINE__, $db->error());
230
231        while ($pun_user_online = $db->fetch_assoc($result))
232        {
233                if ($pun_user_online['user_id'] > 1)
234                {
235                        if ($pun_user['g_view_users'] == '1')
236                                $users[] = "\n\t\t\t\t".'<dd><a href="profile.php?id='.$pun_user_online['user_id'].'">'.pun_htmlspecialchars($pun_user_online['ident']).'</a>';
237                        else
238                                $users[] = "\n\t\t\t\t".'<dd>'.pun_htmlspecialchars($pun_user_online['ident']);
239                }
240                else
241                        ++$num_guests;
242        }
243
244        $num_users = count($users);
245        echo "\t\t\t\t".'<dd><span>'.sprintf($lang_index['Users online'], '<strong>'.forum_number_format($num_users).'</strong>').'</span></dd>'."\n\t\t\t\t".'<dd><span>'.sprintf($lang_index['Guests online'], '<strong>'.forum_number_format($num_guests).'</strong>').'</span></dd>'."\n\t\t\t".'</dl>'."\n";
246
247
248        if ($num_users > 0)
249                echo "\t\t\t".'<dl id="onlinelist" class="clearb">'."\n\t\t\t\t".'<dt><strong>'.$lang_index['Online'].' </strong></dt>'."\t\t\t\t".implode(',</dd> ', $users).'</dd>'."\n\t\t\t".'</dl>'."\n";
250        else
251                echo "\t\t\t".'<div class="clearer"></div>'."\n";
252
253}
254else
255        echo "\t\t\t".'</dl>'."\n\t\t\t".'<div class="clearer"></div>'."\n";
256
257
258?>
259                </div>
260        </div>
261</div>
262<?php
263
264$footer_style = 'index';
265require PUN_ROOT.'footer.php';
Note: See TracBrowser for help on using the repository browser.