-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
BoardIndex.template.php
422 lines (364 loc) · 13.9 KB
/
BoardIndex.template.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
<?php
/**
* Simple Machines Forum (SMF)
*
* @package SMF
* @author Simple Machines https://www.simplemachines.org
* @copyright 2022 Simple Machines and individual contributors
* @license https://www.simplemachines.org/about/smf/license.php BSD
*
* @version 2.1.3
*/
/**
* The top part of the outer layer of the boardindex
*/
function template_boardindex_outer_above()
{
template_newsfader();
}
/**
* This shows the newsfader
*/
function template_newsfader()
{
global $context, $settings, $txt;
// Show the news fader? (assuming there are things to show...)
if (!empty($settings['show_newsfader']) && !empty($context['news_lines']))
{
echo '
<div class="forum_news">
<span class="news_icon"><i class="news_icon fa fa-newspaper"></i></span>
<h2>', $txt['news'], ':</h2>
<ul id="smf_slider">';
foreach ($context['news_lines'] as $news)
echo '
<li>', $news, '</li>';
echo '
</ul>
</div>';
addInlineJavaScript('
jQuery("#smf_slider").slippry({
pause: smf_newsfader_time,
adaptiveHeight: 0,
captions: 0,
controls: 0,
});
', true);
}
}
/**
* This actually displays the board index
*/
function template_main()
{
global $context, $txt;
echo '
<div id="boardindex_table" class="boardindex_table">';
/* Each category in categories is made up of:
id, href, link, name, is_collapsed (is it collapsed?), can_collapse (is it okay if it is?),
new (is it new?), collapse_href (href to collapse/expand), collapse_image (up/down image),
and boards. (see below.) */
foreach ($context['categories'] as $category)
{
// If theres no parent boards we can see, avoid showing an empty category (unless its collapsed)
if (empty($category['boards']) && !$category['is_collapsed'])
continue;
echo '
<div class="main_container">
<div class="cat_bar ', $category['is_collapsed'] ? 'collapsed' : '', '" id="category_', $category['id'], '">
<h3 class="catbg">';
// If this category even can collapse, show a link to collapse it.
if ($category['can_collapse'])
echo '
<span id="category_', $category['id'], '_upshrink" class="', $category['is_collapsed'] ? 'toggle_down' : 'toggle_up', ' floatright" data-collapsed="', (int) $category['is_collapsed'], '" title="', !$category['is_collapsed'] ? $txt['hide_category'] : $txt['show_category'], '" style="display: none;"></span>';
echo '
', $category['link'], '
</h3>
</div>
', !empty($category['description']) ? '
<div class="desc">' . $category['description'] . '</div>' : '', '
<div id="category_', $category['id'], '_boards" ', (!empty($category['css_class']) ? ('class="' . $category['css_class'] . '"') : ''), $category['is_collapsed'] ? ' style="display: none;"' : '', '>';
/* Each board in each category's boards has:
new (is it new?), id, name, description, moderators (see below), link_moderators (just a list.),
children (see below.), link_children (easier to use.), children_new (are they new?),
topics (# of), posts (# of), link, href, and last_post. (see below.) */
foreach ($category['boards'] as $board)
{
echo '
<div id="board_', $board['id'], '" class="up_contain b_', $board['type'], (!empty($board['css_class']) ? ' ' . $board['css_class'] : ''), '">
<div class="board_icon">
', function_exists('template_bi_' . $board['type'] . '_icon') ? call_user_func('template_bi_' . $board['type'] . '_icon', $board) : template_bi_board_icon($board), '
</div>
<div class="info">
', function_exists('template_bi_' . $board['type'] . '_info') ? call_user_func('template_bi_' . $board['type'] . '_info', $board) : template_bi_board_info($board), '
</div>
<div class="board_stats">
', function_exists('template_bi_' . $board['type'] . '_stats') ? call_user_func('template_bi_' . $board['type'] . '_stats', $board) : template_bi_board_stats($board), '
</div>
<div class="lastpost">
', function_exists('template_bi_' . $board['type'] . '_lastpost') ? call_user_func('template_bi_' . $board['type'] . '_lastpost', $board) : template_bi_board_lastpost($board), '
</div>
', function_exists('template_bi_' . $board['type'] . '_children') ? call_user_func('template_bi_' . $board['type'] . '_children', $board) : template_bi_board_children($board) , '
</div><!-- #board_[id] -->';
}
echo '
</div><!-- #category_[id]_boards -->
</div><!-- .main_container -->';
}
echo '
</div><!-- #boardindex_table -->';
// Show the mark all as read button?
if ($context['user']['is_logged'] && !empty($context['categories']))
echo '
<div class="mark_read">
', template_button_strip($context['mark_read_button'], 'right'), '
</div>';
}
/**
* The lower part of the outer layer of the board index
*/
function template_boardindex_outer_below()
{
template_info_center();
}
/**
* Displays the info center
*/
function template_info_center()
{
global $context, $txt;
if (empty($context['info_center']))
return;
// Here's where the "Info Center" starts...
echo '
<div id="upshrink_stats">
<div id="info_center_blocks">
<ul>';
// Info Center Elements for tabs
foreach ($context['info_center'] as $block)
{
echo '
<li class="title_bar">
<a href="#block-' . $block['txt'] . '" class="titlebg">
<span class="main_icons ', $block['txt'] , '"></span>
<span>', $txt[$block['txt']], '</span>
</a>
</li>';
}
echo '
</ul>';
// Load the blocks
foreach ($context['info_center'] as $block)
{
$func = 'template_ic_block_' . $block['tpl'];
echo '
<div id="block-' . $block['txt'] . '" class="windowbg">
', $func(), '
</div>';
}
echo '
</div><!-- #info_center_blocks -->
</div><!-- #upshrink_stats -->';
}
/**
* The recent posts section of the info center
*/
function template_ic_block_recent()
{
global $context, $txt, $scripturl, $settings;
// This is the "Recent Posts" bar.
echo '
<div class="sub_bar">
<h4 class="subbg">
<a href="', $scripturl, '?action=recent">', $txt['recent_posts'], '</a>
</h4>
</div>
<div id="recent_posts_content">';
// Only one sad little post
if ($settings['number_recent_posts'] == 1)
{
echo '
<div class="windowbg">
<h6>', $context['latest_post']['link'], '</h6>
<span class="smalltext">', themecustoms_icon('fa fa-clock'), ' ', $context['latest_post']['time'], '</span><br>
</div>';
}
// Show lots of posts.
if (!empty($context['latest_posts']))
{
echo '
<ul>';
/* Each post in latest_posts has:
board (with an id, name, and link.), topic (the topic's id.), poster (with id, name, and link.),
subject, short_subject (shortened with...), time, link, and href. */
foreach ($context['latest_posts'] as $post)
echo '
<li class="windowbg">
', (!empty($post['poster']['avatar']) && !empty($post['poster']['avatar']) ? themecustoms_avatar($post['poster']['avatar']['href'], $post['poster']['id']) : ''), '
<div>
<h6>', $post['link'], '</h6>
<span class="smalltext poster_link">', themecustoms_icon('fa fa-user'), ' ', $post['poster']['link'], '</span>
<span class="smalltext">', themecustoms_icon('fa fa-clock'), ' ', $post['time'], '</span><br>
<span class="smalltext">', themecustoms_icon('fa fa-folder'), ' ', $post['board']['link'], '</span>
</div>
</li>';
echo '
</ul>';
}
echo '
</div><!-- #recent_posts_content -->';
}
/**
* The calendar section of the info center
*/
function template_ic_block_calendar()
{
global $context, $scripturl, $txt;
echo '
<div class="sub_bar">
<h4 class="subbg">
<a href="', $scripturl, '?action=calendar">', $context['calendar_only_today'] ? $txt['calendar_today'] : $txt['calendar_upcoming'], '</a>
</h4>
</div>';
// Show information about events, birthdays, and holidays on the calendar.
// Holidays like "Christmas", "Chanukah", and "We Love [Unknown] Day" :P
if (!empty($context['calendar_holidays']))
echo '
<p class="inline holiday">
<span>', $txt['calendar_prompt'], '</span> ', implode(', ', $context['calendar_holidays']), '
</p>';
// People's birthdays. Like mine. And yours, I guess. Kidding.
if (!empty($context['calendar_birthdays']))
{
echo '
<p class="inline">
<span class="birthday">', $context['calendar_only_today'] ? $txt['birthdays'] : $txt['birthdays_upcoming'], '</span>';
// Each member in calendar_birthdays has: id, name (person), age (if they have one set?), is_last. (last in list?), and is_today (birthday is today?)
foreach ($context['calendar_birthdays'] as $member)
echo '
<a href="', $scripturl, '?action=profile;u=', $member['id'], '">', $member['is_today'] ? '<strong class="fix_rtl_names">' : '', $member['name'], $member['is_today'] ? '</strong>' : '', isset($member['age']) ? ' (' . $member['age'] . ')' : '', '</a>', $member['is_last'] ? '' : ', ';
echo '
</p>';
}
// Events like community get-togethers.
if (!empty($context['calendar_events']))
{
echo '
<p class="inline">
<span class="event">', $context['calendar_only_today'] ? $txt['events'] : $txt['events_upcoming'], '</span> ';
// Each event in calendar_events should have:
// title, href, is_last, can_edit (are they allowed?), modify_href, and is_today.
foreach ($context['calendar_events'] as $event)
echo '
', $event['can_edit'] ? '<a href="' . $event['modify_href'] . '" title="' . $txt['calendar_edit'] . '"><span class="main_icons calendar_modify"></span></a> ' : '', $event['href'] == '' ? '' : '<a href="' . $event['href'] . '">', $event['is_today'] ? '<strong>' . $event['title'] . '</strong>' : $event['title'], $event['href'] == '' ? '' : '</a>', $event['is_last'] ? '<br>' : ', ';
echo '
</p>';
}
}
/**
* The stats section of the info center
*/
function template_ic_block_stats()
{
global $scripturl, $txt, $context, $settings;
// Show statistical style information...
echo '
<div class="sub_bar">
<h4 class="subbg">
<a href="', $scripturl, '?action=stats">', $txt['forum_stats'], '</a>
</h4>
</div>
<div class="total_members">
<span class="title">
', themecustoms_icon('fas fa-users'), '
<span class="block-title">', $txt['total_members'], '</span>
</span>
<span class="totals">', $context['common_stats']['total_members'], '</span>
</div>
<div class="total_posts">
<span class="title">
', themecustoms_icon('fas fa-comments'), '
<span class="block-title">', $txt['total_posts'], '</span>
</span>
<span class="totals">', $context['common_stats']['total_posts'], '</span>
</div>
<div class="total_topics">
<span class="title">
', themecustoms_icon('fas fa-file-alt'), '
<span class="block-title">', $txt['total_topics'], '</span>
</span>
<span class="totals">', $context['common_stats']['total_topics'], '</span>
</div>
', !empty($settings['show_latest_member']) ? '
<div class="latest_member">
<span class="title">
' . themecustoms_icon('fas fa-user') . '
<span class="block-title">' . $txt['latest_member'] . '</span>
</span>
<span class="totals">' . $context['common_stats']['latest_member']['link'] . '</span>
</div>' : '',
!empty($context['latest_post']) ? '
<div class="latest_post">
<span class="title">
' . themecustoms_icon('fas fa-comment-dots') . '
<span class="block-title">' . $txt['latest_post'] . '</span>
</span>
<span class="totals">' . $context['latest_post']['link'] . '</span>
</div>' : '', '
<span>
<a class="button stats_link" href="', $scripturl, '?action=stats">', $txt['more_stats'], '</a>
</span>';
}
/**
* The who's online section of the info center
*/
function template_ic_block_online()
{
global $context, $scripturl, $txt, $modSettings, $settings;
// "Users online" - in order of activity.
echo '
<div class="sub_bar">
<h4 class="subbg">
', $context['show_who'] ? '<a href="' . $scripturl . '?action=who">' : '', $txt['online_users'], $context['show_who'] ? '</a>' : '', '
</h4>
</div>
<p class="inline">
', $context['show_who'] ? '<a href="' . $scripturl . '?action=who">' : '', '<strong>', $txt['online'], ': </strong>', comma_format($context['num_guests']), ' ', $context['num_guests'] == 1 ? $txt['guest'] : $txt['guests'], ', ', comma_format($context['num_users_online']), ' ', $context['num_users_online'] == 1 ? $txt['user'] : $txt['users'];
// Handle hidden users and buddies.
$bracketList = array();
if ($context['show_buddies'])
$bracketList[] = comma_format($context['num_buddies']) . ' ' . ($context['num_buddies'] == 1 ? $txt['buddy'] : $txt['buddies']);
if (!empty($context['num_spiders']))
$bracketList[] = comma_format($context['num_spiders']) . ' ' . ($context['num_spiders'] == 1 ? $txt['spider'] : $txt['spiders']);
if (!empty($context['num_users_hidden']))
$bracketList[] = comma_format($context['num_users_hidden']) . ' ' . ($context['num_spiders'] == 1 ? $txt['hidden'] : $txt['hidden_s']);
if (!empty($bracketList))
echo ' (' . implode(', ', $bracketList) . ')';
echo $context['show_who'] ? '</a>' : '', '
- ', $txt['most_online_today'], ': <strong>', comma_format($modSettings['mostOnlineToday']), '</strong> -
', $txt['most_online_ever'], ': ', comma_format($modSettings['mostOnline']), ' (', timeformat($modSettings['mostDate']), ')<br>';
// Assuming there ARE users online... each user in users_online has an id, username, name, group, href, and link.
if (!empty($context['users_online']))
{
echo '
', sprintf($txt['users_active'], $modSettings['lastActive']), ': <br>
<span class="onlinemembers_list' . (empty($settings['st_enable_avatars_online']) ? ' only-name' : '') . '">';
// Show the regular list
if (empty($settings['st_enable_avatars_online']))
echo implode(', ', $context['list_users_online']);
// Avatars
else
foreach ($context['list_users_online'] as $user)
echo '
<span class="show_member">' . $user, '</span>';
echo '
</span>';
// Showing membergroups?
if (!empty($settings['show_group_key']) && !empty($context['membergroups']))
echo '
<span class="membergroups">' . implode(', ', $context['membergroups']) . '</span>';
}
echo '
</p>';
}
?>