419 lines
20 KiB
PHP
419 lines
20 KiB
PHP
<?php
|
|
// Version: 1.0; MessageIndex
|
|
|
|
function template_main()
|
|
{
|
|
global $context, $settings, $options, $scripturl, $modSettings, $txt;
|
|
|
|
echo '
|
|
<div><a name="top"></a>', theme_linktree();
|
|
echo '
|
|
<h2 style="margin-bottom: 0; margin-top: 0.2em;"><a class="header" href="'.$scripturl . '?board=' . $context['board_id'] . '.0">' . $context['page_title'] . '</a></h2>';
|
|
|
|
if (isset ($context['moderators_list'])) {
|
|
echo '
|
|
<span class="smalltext">', $context['moderators_list'], '</span>';
|
|
}
|
|
|
|
echo '
|
|
</div>';
|
|
|
|
if (isset($context['boards']) && (!empty($options['show_children']) || $context['start'] == 0))
|
|
{
|
|
echo '
|
|
<div class="tborder" style="padding: 1px; margin-bottom: 2ex;"><table border="0" width="100%" cellspacing="1" cellpadding="5">
|
|
<tr class="titlebg">
|
|
<td colspan="4">', $txt['parent_boards'], '</td>
|
|
</tr>';
|
|
foreach ($context['boards'] as $board)
|
|
{
|
|
echo '
|
|
<tr class="windowbg2">
|
|
<td class="windowbg" width="6%" align="center" valign="top">';
|
|
|
|
// Is this board itself new?
|
|
if ($board['new'])
|
|
echo '<img src="', $settings['images_url'], '/on.gif" alt="', $txt[333], '" title="', $txt[333], '" border="0" />';
|
|
// Is one of this board's children new, then?
|
|
elseif ($board['children_new'])
|
|
echo '<img src="', $settings['images_url'], '/on2.gif" alt="', $txt[333], '" title="', $txt[333], '" border="0" />';
|
|
// I guess it's not new at all.
|
|
else
|
|
echo '<img src="', $settings['images_url'], '/off.gif" alt="', $txt[334], '" title="', $txt[334], '" border="0" />';
|
|
|
|
echo '</td>
|
|
<td align="left">
|
|
<b><a href="', $board['href'], '" name="b', $board['id'], '">', $board['name'], '</a></b><br />
|
|
', $board['description'];
|
|
|
|
if (!empty($board['moderators']))
|
|
echo '
|
|
<div style="padding-top: 1px;" class="smalltext"><i>', count($board['moderators']) == 1 ? $txt[298] : $txt[299], ': ', implode(', ', $board['link_moderators']), '</i></div>';
|
|
|
|
if (!empty($board['children']))
|
|
{
|
|
$children = array();
|
|
foreach ($board['children'] as $child)
|
|
{
|
|
$child['link'] = '<a href="' . $child['href'] . '" title="' . ($child['new'] ? $txt[333] : $txt[334]) . ' (' . $txt[330] . ': ' . $child['topics'] . ', ' . $txt[21] . ': ' . $child['posts'] . ')">' . $child['name'] . '</a>';
|
|
$children[] = $child['new'] ? '<b>' . $child['link'] . '</b>' : $child['link'];
|
|
}
|
|
|
|
echo '
|
|
<div style="padding-top: 1px;" class="smalltext"><i>', $txt['parent_boards'], ': ', implode(', ', $children), '</i></div>';
|
|
}
|
|
|
|
echo '
|
|
</td>
|
|
<td class="windowbg" valign="middle" align="center" style="width: 12ex;"><span class="smalltext">
|
|
', $board['posts'], ' ', $txt[21], ' ', $txt['smf88'], '<br />
|
|
', $board['topics'],' ', $txt[330], '
|
|
</span></td>
|
|
<td class="smalltext" valign="middle" width="22%">';
|
|
|
|
if (!empty($board['last_post']['id']))
|
|
echo '
|
|
', $txt[22], ' ', $txt[30], ' ', $board['last_post']['time'], '<br />
|
|
', $txt['smf88'], ' ', $board['last_post']['link'], ' ', $txt[525], ' ', $board['last_post']['member']['link'];
|
|
|
|
echo '
|
|
</td>
|
|
</tr>';
|
|
}
|
|
echo '
|
|
</table></div>';
|
|
}
|
|
|
|
if (!empty($options['show_board_desc']) && $context['description'] != '')
|
|
{
|
|
echo '
|
|
<table width="100%" cellpadding="6" cellspacing="0" border="0" class="tborder" style="margin-bottom: 1ex;">
|
|
<tr>
|
|
<td align="left" class="catbg" width="100%" height="24">
|
|
<span class="smalltext">', $context['description'], '</span>
|
|
</td>
|
|
</tr>
|
|
</table>';
|
|
}
|
|
echo '
|
|
<table width="100%" cellpadding="0" cellspacing="1" border="0" class="tborder" style="margin-bottom: 1ex;">
|
|
<tr>
|
|
<td align="left" class="catbg" height="20">
|
|
<table cellpadding="2" cellspacing="0" width="100%">
|
|
<tr>
|
|
<td><b>', $txt[139], ':</b> ', $context['page_index'], $modSettings['topbottomEnable'] ? $context['menu_separator'] . '<a href="#bot">' . ($settings['use_image_buttons'] ? '<img src="' . $settings['images_url'] . '/' . $context['user']['language'] . '/go_down.gif" alt="' . $txt['topbottom5'] . '" border="0" align="top" />' : $txt['topbottom5']) . '</a>' : '', '</td>
|
|
<td align="right" nowrap="nowrap" style="font-size: smaller;">', theme_show_buttons(), '</td>
|
|
</tr>
|
|
</table>';
|
|
|
|
if (true OR isset($_GET['debug']))
|
|
echo $context['alphabet_index'];
|
|
|
|
echo '
|
|
</td>
|
|
</tr>
|
|
</table>';
|
|
|
|
// If Quick Moderation is enabled (and set to checkboxes - 1) start the form.
|
|
if (!empty($options['display_quick_mod']) && $options['display_quick_mod'] == 1 && !empty($context['topics']))
|
|
echo '
|
|
<form action="', $scripturl, '?action=quickmod;board=', $context['current_board'], '.', $context['start'], '" method="post" name="topicForm" style="margin: 0;">';
|
|
|
|
echo '
|
|
<table border="0" width="100%" cellspacing="1" cellpadding="4" class="bordercolor">
|
|
<tr class="titlebg">';
|
|
|
|
// Are there actually any topics to show?
|
|
if (!empty($context['topics']))
|
|
{
|
|
echo '
|
|
<td width="50" colspan="2">';
|
|
$first_topic = current($context['topics']);
|
|
echo '</td>
|
|
<td>', $txt[70],'</td>
|
|
<td width="14%" align="center">', $txt[109], '</td>
|
|
<td width="4%" align="center">', $txt[110], '</td>
|
|
<td width="4%" align="center">', $txt[301], '</td>
|
|
<td width="100">', $txt[111], '</td>';
|
|
|
|
// Show a "select all" box for quick moderation?
|
|
if (!empty($options['display_quick_mod']) && $options['display_quick_mod'] == 1)
|
|
echo '
|
|
<td width="24" valign="middle" align="center">
|
|
<input type="checkbox" onclick="invertAll(this, this.form, \'topics[]\');" class="check" />
|
|
</td>';
|
|
// If it's on in "image" mode, don't show anything but the column.
|
|
elseif (!empty($options['display_quick_mod']))
|
|
echo '
|
|
<td width="4%" valign="middle" align="center"></td>';
|
|
}
|
|
// No topics.... just say, "sorry bub".
|
|
else
|
|
echo '
|
|
<td width="100%" colspan="7"><b>', $txt[151], '</b></td>';
|
|
|
|
echo '
|
|
</tr>';
|
|
|
|
foreach ($context['topics'] as $topic)
|
|
{
|
|
|
|
# if ($first_topic['is_sticky'] && !$topic['is_sticky']) {
|
|
# $first_topic['is_sticky'] = 0;
|
|
# // Display separator
|
|
# if($context['user']['is_guest']) {
|
|
# echo '<tr class="titlebg"><td colspan="7">
|
|
#<div align="center">
|
|
#<script type="text/javascript"><!--
|
|
#google_ad_client = "pub-7163001599713810";
|
|
#google_ad_width = 728;
|
|
#google_ad_height = 15;
|
|
#google_ad_format = "728x15_0ads_al";
|
|
#//2006-11-21: forum_links_under_sticky_posts
|
|
#google_ad_channel = "1044131930";
|
|
#google_color_border = "384658";
|
|
#google_color_bg = "313131";
|
|
#google_color_link = "FFFFFF";
|
|
#google_color_text = "dddddd";
|
|
#google_color_url = "FFC246";
|
|
#//--></script>
|
|
#<script type="text/javascript"
|
|
# src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
|
|
#</script>
|
|
#</div></td></tr>';
|
|
# } else {
|
|
# echo '<tr class="titlebg"><td colspan="7"> '/*, $txt['non_sticky_topics']*/, '</td></tr>';
|
|
# }
|
|
# }
|
|
|
|
if ($first_topic['is_sticky'] && !$topic['is_sticky']) {
|
|
$first_topic['is_sticky'] = 0;
|
|
// Display separator
|
|
echo '<tr class="titlebg"><td colspan="7"> '/*, $txt['non_sticky_topics']*/, '</td></tr>';
|
|
}
|
|
echo '
|
|
<tr>
|
|
<td class="windowbg2" valign="middle" align="center">
|
|
<img src="', $settings['images_url'], '/topic/', $topic['class'], '.gif" alt="" />
|
|
</td>
|
|
<td class="windowbg2" valign="middle" align="center">
|
|
<img src="', $settings['images_url'], '/post/', $topic['first_post']['icon'], '.gif" alt="" />
|
|
</td>
|
|
<td class="windowbg" valign="middle">';
|
|
// Is this topic new? (assuming they are logged in!)
|
|
if ($topic['new'] && $context['user']['is_logged'])
|
|
echo '
|
|
<a href="', $scripturl, '?topic=', $topic['id'], '.from', $topic['newtime'], '#new"><img src="', $settings['images_url'], '/', $context['user']['language'], '/new.gif" alt="', $txt[302], '" border="0" /></a>';
|
|
|
|
echo '
|
|
', $topic['first_post']['link'];
|
|
|
|
if (! empty ($topic['subtitle']))
|
|
echo '
|
|
<div class="i">', $topic['subtitle'], '</div>';
|
|
|
|
echo '
|
|
<span class="smalltext">', $topic['pages'], '</span>
|
|
</td>
|
|
<td class="windowbg2" valign="middle" align="center">
|
|
', $topic['first_post']['member']['link'], '
|
|
</td>
|
|
<td class="windowbg" valign="middle" align="center">
|
|
', $topic['replies'], '
|
|
</td>
|
|
<td class="windowbg" valign="middle" align="center">
|
|
', $topic['views'], '
|
|
</td>
|
|
<td class="windowbg2" valign="middle">';
|
|
/* if ($settings['images_url'] != $settings['theme_url'] . '/images' || file_exists($settings['theme_dir'] . '/images/icons/last_post.gif'))
|
|
echo '
|
|
<a href="', $topic['last_post']['href'], '"><img src="', $settings['images_url'], '/icons/last_post.gif" alt="', $txt[111], '" title="', $txt[111], '" border="0" style="float: right;" /></a>';*/
|
|
echo '
|
|
<span class="smalltext">
|
|
', $topic['last_post']['time'], '<br />
|
|
', $txt[525], ' ', $topic['last_post']['member']['link'], '
|
|
</span>
|
|
</td>';
|
|
|
|
// Show the quick moderation options?
|
|
if (!empty($options['display_quick_mod']))
|
|
{
|
|
echo '
|
|
<td class="windowbg" valign="middle" align="center" width="4%">';
|
|
if ($options['display_quick_mod'] == 1 && ($topic['quick_mod']['remove'] || $topic['quick_mod']['lock'] || $topic['quick_mod']['sticky'] || $topic['quick_mod']['move']))
|
|
echo '
|
|
<input type="checkbox" name="topics[]" value="', $topic['id'], '" class="check" />';
|
|
else
|
|
{
|
|
// Check permissions on each and show only the ones they are allowed to use.
|
|
if ($topic['quick_mod']['remove'])
|
|
echo '<a href="', $scripturl, '?action=quickmod;board=', $context['current_board'], '.', $context['start'], ';actions[', $topic['id'], ']=remove;sesc=', $context['session_id'], '" onclick="return confirm(\'', $txt['quickmod_confirm'], '\');"><img src="', $settings['images_url'], '/icons/quick_remove.gif" width="16" alt="', $txt[63], '" title="', $txt[63], '" border="0" /></a>';
|
|
if ($topic['quick_mod']['lock'])
|
|
echo '<a href="', $scripturl, '?action=quickmod;board=', $context['current_board'], '.', $context['start'], ';actions[', $topic['id'], ']=lock;sesc=', $context['session_id'], '" onclick="return confirm(\'', $txt['quickmod_confirm'], '\');"><img src="', $settings['images_url'], '/icons/quick_lock.gif" width="16" alt="', $txt['smf279'], '" title="', $txt['smf279'], '" border="0" /></a>';
|
|
if ($topic['quick_mod']['lock'] || $topic['quick_mod']['remove'])
|
|
echo '<br />';
|
|
if ($topic['quick_mod']['sticky'])
|
|
echo '<a href="', $scripturl, '?action=quickmod;board=', $context['current_board'], '.', $context['start'], ';actions[', $topic['id'], ']=sticky;sesc=', $context['session_id'], '" onclick="return confirm(\'', $txt['quickmod_confirm'], '\');"><img src="', $settings['images_url'], '/icons/quick_sticky.gif" width="16" alt="', $txt['smf277'], '" title="', $txt['smf277'], '" border="0" /></a>';
|
|
if ($topic['quick_mod']['move'])
|
|
echo '<a href="', $scripturl, '?action=movetopic;board=', $context['current_board'], '.', $context['start'], ';topic=', $topic['id'], '.0"><img src="', $settings['images_url'], '/icons/quick_move.gif" width="16" alt="', $txt[132], '" title="', $txt[132], '" border="0" /></a>';
|
|
}
|
|
echo '</td>';
|
|
}
|
|
echo '
|
|
</tr>';
|
|
}
|
|
|
|
if (!empty($options['display_quick_mod']) && $options['display_quick_mod'] == 1 && !empty($context['topics']))
|
|
{
|
|
echo '
|
|
<tr class="titlebg">
|
|
<td colspan="8" align="right">
|
|
<select name="qaction"', $context['can_move'] ? ' onchange="document.topicForm.moveItTo.disabled = (this.options[this.selectedIndex].value != \'move\');"' : '', '>
|
|
<option value="">--------</option>
|
|
', $context['can_remove'] ? '<option value="remove">' . $txt['quick_mod_remove'] . '</option>' : '', '
|
|
', $context['can_lock'] ? '<option value="lock">' . $txt['quick_mod_lock'] . '</option>' : '', '
|
|
', $context['can_sticky'] ? '<option value="sticky">' . $txt['quick_mod_sticky'] . '</option>' : '', '
|
|
', $context['can_move'] ? '<option value="move">' . $txt['quick_mod_move'] . ': </option>' : '', '
|
|
', $context['can_merge'] ? '<option value="merge">' . $txt['quick_mod_merge'] . '</option>' : '', '
|
|
</select>';
|
|
if ($context['can_move'])
|
|
{
|
|
echo '
|
|
<select id="moveItTo" name="move_to" disabled="disabled">';
|
|
foreach ($context['jump_to'] as $category)
|
|
foreach ($category['boards'] as $board)
|
|
{
|
|
if (!$board['is_current'])
|
|
echo '
|
|
<option value="', $board['id'], '"', !empty($board['selected']) ? ' selected="selected"' : '', '>', str_repeat('-', $board['child_level'] + 1), ' ', $board['name'], '</option>';
|
|
}
|
|
echo '
|
|
</select>';
|
|
}
|
|
echo '
|
|
<input type="submit" value="', $txt['quick_mod_go'], '" onclick="return document.topicForm.qaction.value != \'\' && confirm(\'', $txt['quickmod_confirm'], '\');" />
|
|
</td>
|
|
</tr>';
|
|
}
|
|
|
|
echo '
|
|
</table>';
|
|
|
|
// Finish off the form - again, if Quick Moderation is being done with checkboxes. (1)
|
|
if (!empty($options['display_quick_mod']) && $options['display_quick_mod'] == 1 && !empty($context['topics']))
|
|
echo '
|
|
<input type="hidden" name="sc" value="' . $context['session_id'] . '" />
|
|
</form>';
|
|
|
|
echo '
|
|
<table width="100%" cellpadding="0" cellspacing="1" border="0" class="tborder" style="margin-top: 1ex;">
|
|
<tr>
|
|
<td align="left" class="catbg" width="100%" height="20">
|
|
<table cellpadding="2" cellspacing="0" width="100%">
|
|
<tr>
|
|
<td><a name="bot"></a><b>', $txt[139], ':</b> ', $context['page_index'], $modSettings['topbottomEnable'] ? $context['menu_separator'] . '<a href="#top">' . ($settings['use_image_buttons'] ? '<img src="' . $settings['images_url'] . '/' . $context['user']['language'] . '/go_up.gif" alt="' . $txt['topbottom4'] . '" border="0" align="top" />' : $txt['topbottom4']) . '</a>' : '', '</td>
|
|
<td align="right" nowrap="nowrap" style="font-size: smaller;">', theme_show_buttons(), '</td>
|
|
</tr>
|
|
</table>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
<table cellpadding="0" cellspacing="0" width="100%">';
|
|
|
|
// Show breadcrumbs at the bottom too?
|
|
if ($settings['linktree_inline'])
|
|
echo '
|
|
<tr>
|
|
<td colspan="3" valign="bottom">', theme_linktree(), '<br /><br /></td>
|
|
</tr>
|
|
<tr>';
|
|
if (!empty($settings['display_who_viewing']))
|
|
{
|
|
echo '
|
|
<td class="smalltext" colspan="3">';
|
|
if ($settings['display_who_viewing'] == 1)
|
|
echo count($context['view_members']), ' ', count($context['view_members']) == 1 ? $txt['who_member'] : $txt[19];
|
|
else
|
|
echo $txt['who_viewing_board'],empty($context['view_members_list']) ? '0 ' . $txt[19] : implode(', ', $context['view_members_list']) . (empty($context['view_num_hidden']) || $context['can_moderate_forum'] ? '' : ' (+ ' . $context['view_num_hidden'] . ' ' . $txt['hidden'] . ')');
|
|
echo $txt['who_and'], $context['view_num_guests'], ' ', $context['view_num_guests'] == 1 ? $txt['guest'] : $txt['guests'], '</td>';
|
|
}
|
|
|
|
echo '
|
|
</tr>
|
|
<tr>
|
|
<td class="smalltext" align="left" style="padding-top: 1ex;">', !empty($modSettings['enableParticipation']) ? '
|
|
<img src="' . $settings['images_url'] . '/topic/my_normal_post.gif" alt="" align="middle" /> ' . $txt['participation_caption'] . '<br />' : '', '
|
|
<img src="' . $settings['images_url'] . '/topic/normal_post.gif" alt="" align="middle" /> ' . $txt[457] . '<br />
|
|
<img src="' . $settings['images_url'] . '/topic/hot_post.gif" alt="" align="middle" /> ' . $txt[454] . '<br />
|
|
<img src="' . $settings['images_url'] . '/topic/veryhot_post.gif" alt="" align="middle" /> ' . $txt[455] . '
|
|
</td>
|
|
<td class="smalltext" align="left" valign="top" style="padding-top: 1ex;">
|
|
<img src="' . $settings['images_url'] . '/topic/normal_post_locked.gif" alt="" align="middle" /> ' . $txt[456] . '<br />' . ($modSettings['enableStickyTopics'] == '1' ? '
|
|
<img src="' . $settings['images_url'] . '/topic/normal_post_sticky.gif" alt="" align="middle" /> ' . $txt['smf96'] . '<br />' : '') . ($modSettings['pollMode'] == '1' ? '
|
|
<img src="' . $settings['images_url'] . '/topic/normal_poll.gif" alt="" align="middle" /> ' . $txt['smf43'] : '') . '
|
|
</td>
|
|
<td class="smalltext" align="right" valign="middle">';
|
|
echo '
|
|
<form action="', $scripturl, '" method="get" name="jumptoForm">
|
|
<label for="jumpto">' . $txt[160] . '</label>:
|
|
<select name="jumpto" id="jumpto" onchange="if (this.options[this.selectedIndex].value) window.location.href=\'', $scripturl, '\' + this.options[this.selectedIndex].value;">
|
|
<option value="">' . $txt[251] . ':</option>';
|
|
|
|
// Show each category - they all have an id, name, and the boards in them.
|
|
foreach ($context['jump_to'] as $category)
|
|
{
|
|
// Show the category name with a link to the category. (index.php#id)
|
|
echo '
|
|
<option value="" disabled="disabled">-----------------------------</option>
|
|
<option value="#', $category['id'], '">', $category['name'], '</option>
|
|
<option value="" disabled="disabled">-----------------------------</option>';
|
|
|
|
/* Now go through each board - they all have:
|
|
id, name, child_level (how many parents they have, basically...), and is_current. (is this the current board?) */
|
|
foreach ($category['boards'] as $board)
|
|
{
|
|
// Show some more =='s if this is a child, so as to make it look nice.
|
|
echo '
|
|
<option value="?board=', $board['id'], '.0"', $board['is_current'] ? ' selected="selected"' : '', '> ', str_repeat('==', $board['child_level']), '=> ', $board['name'], '</option>';
|
|
}
|
|
}
|
|
|
|
echo '
|
|
</select>
|
|
<input type="button" value="', $txt[161], '" onclick="if (document.jumptoForm.jumpto.options[document.jumptoForm.jumpto.selectedIndex].value) window.location.href = \'', $scripturl, '\' + document.jumptoForm.jumpto.options[document.jumptoForm.jumpto.selectedIndex].value;" />
|
|
</form>';
|
|
|
|
echo '
|
|
|
|
</td>
|
|
</tr>
|
|
</table>';
|
|
}
|
|
|
|
function theme_show_buttons()
|
|
{
|
|
global $context, $settings, $options, $txt, $scripturl;
|
|
|
|
$buttonArray = array();
|
|
|
|
// If they are logged in, and the mark read buttons are enabled..
|
|
if ($context['user']['is_logged'] && $settings['show_mark_read'])
|
|
$buttonArray[] = '<a href="' . $scripturl . '?action=markasread;sa=board;board=' . $context['current_board'] . '.0">' . ($settings['use_image_buttons'] ? '<img src="' . $settings['images_url'] . '/' . $context['user']['language'] . '/markread.gif" alt="' . $txt[300] . '" border="0" />' : $txt[300]) . '</a>';
|
|
|
|
// If the user has permission to show the notification button... ask them if they're sure, though.
|
|
if ($context['can_mark_notify'])
|
|
$buttonArray[] = '<a href="' . $scripturl . '?action=notifyboard;sa=' . ($context['is_marked_notify'] ? 'off' : 'on') . ';board=' . $context['current_board'] . '.' . $context['start'] . ';sesc=' . $context['session_id'] . '" onclick="return confirm(\'' . ($context['is_marked_notify'] ? $txt['notification_disable_board'] : $txt['notification_enable_board']) . '\');">' . ($settings['use_image_buttons'] ? '<img src="' . $settings['images_url'] . '/' . $context['user']['language'] . '/notify.gif" alt="' . $txt[131] . '" border="0" />' : $txt[131]) . '</a>';
|
|
|
|
// Are they allowed to post new topics?
|
|
if ($context['can_post_new'])
|
|
$buttonArray[] = '<a href="' . $scripturl . '?action=post;board=' . $context['current_board'] . '.0">' . ($settings['use_image_buttons'] ? '<img src="' . $settings['images_url'] . '/' . $context['user']['language'] . '/new_topic.gif" alt="' . $txt[33] . '" border="0" />' : $txt[33]) . '</a>';
|
|
|
|
// How about new polls, can the user post those?
|
|
if ($context['can_post_poll'])
|
|
$buttonArray[] = '<a href="' . $scripturl . '?action=post;board=' . $context['current_board'] . '.0;poll">' . ($settings['use_image_buttons'] ? '<img src="' . $settings['images_url'] . '/' . $context['user']['language'] . '/new_poll.gif" alt="' . $txt['smf20'] . '" border="0" />' : $txt['smf20']) . '</a>';
|
|
|
|
return implode($context['menu_separator'], $buttonArray);
|
|
}
|
|
|
|
?>
|