123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882 |
- <?php
- /**
- * Simple Machines Forum (SMF)
- *
- * @package SMF
- * @author Simple Machines
- * @copyright 2011 Simple Machines
- * @license http://www.simplemachines.org/about/smf/license.php BSD
- *
- * @version 2.1 Alpha 1
- */
- function template_main()
- {
- global $context, $settings, $options, $txt, $scripturl, $modSettings;
- // Let them know, if their report was a success!
- if ($context['report_sent'])
- {
- echo '
- <div class="infobox">
- ', $txt['report_sent'], '
- </div>';
- }
- // Show the anchor for the top and for the first message. If the first message is new, say so.
- echo '
-
- <a id="msg', $context['first_message'], '"></a>', $context['first_new_message'] ? '<a id="new"></a>' : '';
- // Is this topic also a poll?
- if ($context['is_poll'])
- {
- echo '
- <div id="poll">
- <div class="cat_bar">
- <h3 class="catbg">
- <img src="', $settings['images_url'], '/topic/', $context['poll']['is_locked'] ? 'normal_poll_locked' : 'normal_poll', '.png" alt="" class="icon" /> ', $txt['poll'], '
- </h3>
- </div>
- <div class="windowbg">
- <div class="content" id="poll_options">
- <h4 id="pollquestion">
- ', $context['poll']['question'], '
- </h4>';
- // Are they not allowed to vote but allowed to view the options?
- if ($context['poll']['show_results'] || !$context['allow_vote'])
- {
- echo '
- <dl class="options">';
- // Show each option with its corresponding percentage bar.
- foreach ($context['poll']['options'] as $option)
- {
- echo '
- <dt class="', $option['voted_this'] ? ' voted' : '', '">', $option['option'], '</dt>
- <dd class="statsbar', $option['voted_this'] ? ' voted' : '', '">';
- if ($context['allow_poll_view'])
- echo '
- ', $option['bar_ndt'], '
- <span class="percentage">', $option['votes'], ' (', $option['percent'], '%)</span>';
- echo '
- </dd>';
- }
- echo '
- </dl>';
- if ($context['allow_poll_view'])
- echo '
- <p><strong>', $txt['poll_total_voters'], ':</strong> ', $context['poll']['total_votes'], '</p>';
- }
- // They are allowed to vote! Go to it!
- else
- {
- echo '
- <form action="', $scripturl, '?action=vote;topic=', $context['current_topic'], '.', $context['start'], ';poll=', $context['poll']['id'], '" method="post" accept-charset="', $context['character_set'], '">';
- // Show a warning if they are allowed more than one option.
- if ($context['poll']['allowed_warning'])
- echo '
- <p class="smallpadding">', $context['poll']['allowed_warning'], '</p>';
- echo '
- <ul class="reset options">';
- // Show each option with its button - a radio likely.
- foreach ($context['poll']['options'] as $option)
- echo '
- <li>', $option['vote_button'], ' <label for="', $option['id'], '">', $option['option'], '</label></li>';
- echo '
- </ul>
- <div class="submitbutton">
- <input type="submit" value="', $txt['poll_vote'], '" class="button_submit" />
- <input type="hidden" name="', $context['session_var'], '" value="', $context['session_id'], '" />
- </div>
- </form>';
- }
- // Is the clock ticking?
- if (!empty($context['poll']['expire_time']))
- echo '
- <p><strong>', ($context['poll']['is_expired'] ? $txt['poll_expired_on'] : $txt['poll_expires_on']), ':</strong> ', $context['poll']['expire_time'], '</p>';
- echo '
- </div>
- </div>
- </div>
- <div id="pollmoderation">';
- template_button_strip($context['poll_buttons']);
- echo '
- </div>';
- }
- // Does this topic have some events linked to it?
- if (!empty($context['linked_calendar_events']))
- {
- echo '
- <div class="linked_events">
- <div class="title_bar">
- <h3 class="titlebg headerpadding">', $txt['calendar_linked_events'], '</h3>
- </div>
- <div class="windowbg">
- <div class="content">
- <ul class="reset">';
- foreach ($context['linked_calendar_events'] as $event)
- echo '
- <li>
- ', ($event['can_edit'] ? '<a href="' . $event['modify_href'] . '"> <img src="' . $settings['images_url'] . '/icons/calendar_modify.png" alt="" title="' . $txt['modify'] . '" class="edit_event" /></a> ' : ''), '<strong>', $event['title'], '</strong>: ', $event['start_date'], ($event['start_date'] != $event['end_date'] ? ' - ' . $event['end_date'] : ''), '
- </li>';
- echo '
- </ul>
- </div>
- </div>
- </div>';
- }
- // Show the page index... "Pages: [1]".
- echo '
- <div class="pagesection">
- <div class="nextlinks">', $context['previous_next'], '</div>', template_button_strip($context['normal_buttons'], 'right'), '
- <div class="pagelinks floatleft">', $txt['pages'], ': ', $context['page_index'], !empty($modSettings['topbottomEnable']) ? $context['menu_separator'] . ' <a href="#bot"><strong>' . $txt['go_down'] . '</strong></a>' : '', '</div>
- </div>';
- // Show the topic information - icon, subject, etc.
- echo '
- <div id="forumposts">
- <div class="cat_bar">
- <h3 class="catbg">
- <img src="', $settings['images_url'], '/topic/', $context['class'], '.png" align="bottom" alt="" />
- <span id="author">', $txt['author'], '</span>
- ', $txt['topic'], ': ', $context['subject'], ' (', $txt['read'], ' ', $context['num_views'], ' ', $txt['times'], ')
- </h3>
- </div>';
- if (!empty($settings['display_who_viewing']))
- {
- echo '
- <p id="whoisviewing" class="smalltext">';
- // Show just numbers...?
- if ($settings['display_who_viewing'] == 1)
- echo count($context['view_members']), ' ', count($context['view_members']) == 1 ? $txt['who_member'] : $txt['members'];
- // Or show the actual people viewing the topic?
- else
- echo empty($context['view_members_list']) ? '0 ' . $txt['members'] : implode(', ', $context['view_members_list']) . ((empty($context['view_num_hidden']) || $context['can_moderate_forum']) ? '' : ' (+ ' . $context['view_num_hidden'] . ' ' . $txt['hidden'] . ')');
- // Now show how many guests are here too.
- echo $txt['who_and'], $context['view_num_guests'], ' ', $context['view_num_guests'] == 1 ? $txt['guest'] : $txt['guests'], $txt['who_viewing_topic'], '
- </p>';
- }
- echo '
- <form action="', $scripturl, '?action=quickmod2;topic=', $context['current_topic'], '.', $context['start'], '" method="post" accept-charset="', $context['character_set'], '" name="quickModForm" id="quickModForm" style="margin: 0;" onsubmit="return oQuickModify.bInEditMode ? oQuickModify.modifySave(\'' . $context['session_id'] . '\', \'' . $context['session_var'] . '\') : false">';
- $ignoredMsgs = array();
- $removableMessageIDs = array();
- $alternate = false;
- // Get all the messages...
- while ($message = $context['get_message']())
- {
- $ignoring = false;
- $alternate = !$alternate;
- if ($message['can_remove'])
- $removableMessageIDs[] = $message['id'];
- // Are we ignoring this message?
- if (!empty($message['is_ignored']))
- {
- $ignoring = true;
- $ignoredMsgs[] = $message['id'];
- }
- // Show the message anchor and a "new" anchor if this message is new.
- if ($message['id'] != $context['first_message'])
- echo '
- <a id="msg', $message['id'], '"></a>', $message['first_new'] ? '<a id="new"></a>' : '';
- echo '
- <div class="', $message['approved'] ? ($message['alternate'] == 0 ? 'windowbg' : 'windowbg2') : 'approvebg', '">
- <div class="post_wrapper">';
- // Show information about the poster of this message.
- echo '
- <div class="poster">
- <h4>';
- // Show online and offline buttons?
- if (!empty($modSettings['onlineEnable']) && !$message['member']['is_guest'])
- echo '
- ', $context['can_send_pm'] ? '<a href="' . $message['member']['online']['href'] . '" title="' . $message['member']['online']['label'] . '">' : '', '<img src="', $message['member']['online']['image_href'], '" alt="', $message['member']['online']['text'], '" />', $context['can_send_pm'] ? '</a>' : '';
- // Show a link to the member's profile.
- echo '
- ', $message['member']['link'], '
- </h4>
- <ul class="reset smalltext" id="msg_', $message['id'], '_extra_info">';
- // Show the member's custom title, if they have one.
- if (!empty($message['member']['title']))
- echo '
- <li class="title">', $message['member']['title'], '</li>';
- // Show the member's primary group (like 'Administrator') if they have one.
- if (!empty($message['member']['group']))
- echo '
- <li class="membergroup">', $message['member']['group'], '</li>';
- // Don't show these things for guests.
- if (!$message['member']['is_guest'])
- {
- // Show the post group if and only if they have no other group or the option is on, and they are in a post group.
- if ((empty($settings['hide_post_group']) || $message['member']['group'] == '') && $message['member']['post_group'] != '')
- echo '
- <li class="postgroup">', $message['member']['post_group'], '</li>';
- echo '
- <li class="icons">', $message['member']['group_icons'], '</li>';
- // Show avatars, images, etc.?
- if (!empty($settings['show_user_images']) && empty($options['show_no_avatars']) && !empty($message['member']['avatar']['image']))
- echo '
- <li class="avatar">
- <a href="', $scripturl, '?action=profile;u=', $message['member']['id'], '">
- ', $message['member']['avatar']['image'], '
- </a>
- </li>';
- // Show how many posts they have made.
- if (!isset($context['disabled_fields']['posts']))
- echo '
- <li class="postcount">', $txt['member_postcount'], ': ', $message['member']['posts'], '</li>';
- // Is karma display enabled? Total or +/-?
- if ($modSettings['karmaMode'] == '1')
- echo '
- <li class="karma">', $modSettings['karmaLabel'], ' ', $message['member']['karma']['good'] - $message['member']['karma']['bad'], '</li>';
- elseif ($modSettings['karmaMode'] == '2')
- echo '
- <li class="karma">', $modSettings['karmaLabel'], ' +', $message['member']['karma']['good'], '/-', $message['member']['karma']['bad'], '</li>';
- // Is this user allowed to modify this member's karma?
- if ($message['member']['karma']['allow'])
- echo '
- <li class="karma_allow">
- <a href="', $scripturl, '?action=modifykarma;sa=applaud;uid=', $message['member']['id'], ';topic=', $context['current_topic'], '.' . $context['start'], ';m=', $message['id'], ';', $context['session_var'], '=', $context['session_id'], '">', $modSettings['karmaApplaudLabel'], '</a>
- <a href="', $scripturl, '?action=modifykarma;sa=smite;uid=', $message['member']['id'], ';topic=', $context['current_topic'], '.', $context['start'], ';m=', $message['id'], ';', $context['session_var'], '=', $context['session_id'], '">', $modSettings['karmaSmiteLabel'], '</a>
- </li>';
- // Show the member's gender icon?
- if (!empty($settings['show_gender']) && $message['member']['gender']['image'] != '' && !isset($context['disabled_fields']['gender']))
- echo '
- <li class="gender">', $txt['gender'], ': ', $message['member']['gender']['image'], '</li>';
- // Show their personal text?
- if (!empty($settings['show_blurb']) && $message['member']['blurb'] != '')
- echo '
- <li class="blurb">', $message['member']['blurb'], '</li>';
- // Any custom fields to show as icons?
- if (!empty($message['member']['custom_fields']))
- {
- $shown = false;
- foreach ($message['member']['custom_fields'] as $custom)
- {
- if ($custom['placement'] != 1 || empty($custom['value']))
- continue;
- if (empty($shown))
- {
- $shown = true;
- echo '
- <li class="im_icons">
- <ul>';
- }
- echo '
- <li>', $custom['value'], '</li>';
- }
- if ($shown)
- echo '
- </ul>
- </li>';
- }
- // This shows the popular messaging icons.
- if ($message['member']['has_messenger'] && $message['member']['can_view_profile'])
- echo '
- <li class="im_icons">
- <ul>
- ', !empty($message['member']['icq']['link']) ? '<li>' . $message['member']['icq']['link'] . '</li>' : '', '
- ', !empty($message['member']['msn']['link']) ? '<li>' . $message['member']['msn']['link'] . '</li>' : '', '
- ', !empty($message['member']['aim']['link']) ? '<li>' . $message['member']['aim']['link'] . '</li>' : '', '
- ', !empty($message['member']['yim']['link']) ? '<li>' . $message['member']['yim']['link'] . '</li>' : '', '
- </ul>
- </li>';
- // Show the profile, website, email address, and personal message buttons.
- if ($message['member']['show_profile_buttons'])
- {
- echo '
- <li class="profile">
- <ul>';
- // Don't show the profile button if you're not allowed to view the profile.
- if ($message['member']['can_view_profile'])
- echo '
- <li><a href="', $message['member']['href'], '">', ($settings['use_image_buttons'] ? '<img src="' . $settings['images_url'] . '/icons/profile_sm.png" alt="' . $txt['view_profile'] . '" title="' . $txt['view_profile'] . '" />' : $txt['view_profile']), '</a></li>';
- // Don't show an icon if they haven't specified a website.
- if ($message['member']['website']['url'] != '' && !isset($context['disabled_fields']['website']))
- echo '
- <li><a href="', $message['member']['website']['url'], '" title="' . $message['member']['website']['title'] . '" target="_blank" class="new_win">', ($settings['use_image_buttons'] ? '<img src="' . $settings['images_url'] . '/www_sm.png" alt="' . $message['member']['website']['title'] . '" />' : $txt['www']), '</a></li>';
- // Don't show the email address if they want it hidden.
- if (in_array($message['member']['show_email'], array('yes', 'yes_permission_override', 'no_through_forum')) && $context['can_send_email'])
- echo '
- <li><a href="', $scripturl, '?action=emailuser;sa=email;msg=', $message['id'], '" rel="nofollow">', ($settings['use_image_buttons'] ? '<img src="' . $settings['images_url'] . '/email_sm.png" alt="' . $txt['email'] . '" title="' . $txt['email'] . '" />' : $txt['email']), '</a></li>';
- // Since we know this person isn't a guest, you *can* message them.
- if ($context['can_send_pm'])
- echo '
- <li><a href="', $scripturl, '?action=pm;sa=send;u=', $message['member']['id'], '" title="', $message['member']['online']['is_online'] ? $txt['pm_online'] : $txt['pm_offline'], '">', $settings['use_image_buttons'] ? '<img src="' . $settings['images_url'] . '/im_' . ($message['member']['online']['is_online'] ? 'on' : 'off') . '.png" alt="' . ($message['member']['online']['is_online'] ? $txt['pm_online'] : $txt['pm_offline']) . '" />' : ($message['member']['online']['is_online'] ? $txt['pm_online'] : $txt['pm_offline']), '</a></li>';
- echo '
- </ul>
- </li>';
- }
- // Any custom fields for standard placement?
- if (!empty($message['member']['custom_fields']))
- {
- foreach ($message['member']['custom_fields'] as $custom)
- if (empty($custom['placement']) || empty($custom['value']))
- echo '
- <li class="custom">', $custom['title'], ': ', $custom['value'], '</li>';
- }
- // Are we showing the warning status?
- if ($message['member']['can_see_warning'])
- echo '
- <li class="warning">', $context['can_issue_warning'] ? '<a href="' . $scripturl . '?action=profile;area=issuewarning;u=' . $message['member']['id'] . '">' : '', '<img src="', $settings['images_url'], '/warning_', $message['member']['warning_status'], '.png" alt="', $txt['user_warn_' . $message['member']['warning_status']], '" />', $context['can_issue_warning'] ? '</a>' : '', '<span class="warn_', $message['member']['warning_status'], '">', $txt['warn_' . $message['member']['warning_status']], '</span></li>';
- }
- // Otherwise, show the guest's email.
- elseif (!empty($message['member']['email']) && in_array($message['member']['show_email'], array('yes', 'yes_permission_override', 'no_through_forum')) && $context['can_send_email'])
- echo '
- <li class="email"><a href="', $scripturl, '?action=emailuser;sa=email;msg=', $message['id'], '" rel="nofollow">', ($settings['use_image_buttons'] ? '<img src="' . $settings['images_url'] . '/email_sm.png" alt="' . $txt['email'] . '" title="' . $txt['email'] . '" />' : $txt['email']), '</a></li>';
- // Done with the information about the poster... on to the post itself.
- echo '
- </ul>
- </div>
- <div class="postarea">
- <div class="flow_hidden">
- <div class="keyinfo">
- <div class="messageicon">
- <img src="', $message['icon_url'] . '" alt=""', $message['can_modify'] ? ' id="msg_icon_' . $message['id'] . '"' : '', ' />
- </div>
- <h5 id="subject_', $message['id'], '">
- <a href="', $message['href'], '" rel="nofollow">', $message['subject'], '</a>
- </h5>
- <div class="smalltext">« <strong>', !empty($message['counter']) ? $txt['reply_noun'] . ' #' . $message['counter'] : '', ' ', $txt['on'], ':</strong> ', $message['time'], ' »</div>
- <div id="msg_', $message['id'], '_quick_mod"></div>
- </div>';
- // If this is the first post, (#0) just say when it was posted - otherwise give the reply #.
- if ($message['can_approve'] || $context['can_reply'] || $message['can_modify'] || $message['can_remove'] || $context['can_split'] || $context['can_restore_msg'])
- echo '
- <ul class="reset smalltext quickbuttons">';
- // Maybe we can approve it, maybe we should?
- if ($message['can_approve'] || $message['can_unapprove'])
- echo '
- <li><a href="', $scripturl, '?action=moderate;area=postmod;sa=approve;topic=', $context['current_topic'], '.', $context['start'], ';msg=', $message['id'], ';', $context['session_var'], '=', $context['session_id'], '" class="', $message['can_unapprove'] ? 'un' : '', 'approve_button">', $txt[($message['can_unapprove'] ? 'un' : '') . 'approve'], '</a></li>';
- // Can they reply? Have they turned on quick reply?
- if ($context['can_quote'] && !empty($options['display_quick_reply']))
- echo '
- <li><a href="', $scripturl, '?action=post;quote=', $message['id'], ';topic=', $context['current_topic'], '.', $context['start'], ';last_msg=', $context['topic_last_message'], '" onclick="return oQuickReply.quote(', $message['id'], ');" class="quote_button">', $txt['quote'], '</a></li>';
- // So... quick reply is off, but they *can* reply?
- elseif ($context['can_quote'])
- echo '
- <li><a href="', $scripturl, '?action=post;quote=', $message['id'], ';topic=', $context['current_topic'], '.', $context['start'], ';last_msg=', $context['topic_last_message'], '" class="quote_button">', $txt['quote'], '</a></li>';
- // Can the user modify the contents of this post?
- if ($message['can_modify'])
- echo '
- <li><a href="', $scripturl, '?action=post;msg=', $message['id'], ';topic=', $context['current_topic'], '.', $context['start'], '" class="modify_button">', $txt['modify'], '</a></li>';
- // How about... even... remove it entirely?!
- if ($message['can_remove'])
- echo '
- <li><a href="', $scripturl, '?action=deletemsg;topic=', $context['current_topic'], '.', $context['start'], ';msg=', $message['id'], ';', $context['session_var'], '=', $context['session_id'], '" onclick="return confirm(\'', $txt['remove_message'], '?\');" class="remove_button">', $txt['remove'], '</a></li>';
- // What about splitting it off the rest of the topic?
- if ($context['can_split'] && !empty($context['real_num_replies']))
- echo '
- <li><a href="', $scripturl, '?action=splittopics;topic=', $context['current_topic'], '.0;at=', $message['id'], '" class="split_button">', $txt['split'], '</a></li>';
- // Can we restore topics?
- if ($context['can_restore_msg'])
- echo '
- <li><a href="', $scripturl, '?action=restoretopic;msgs=', $message['id'], ';', $context['session_var'], '=', $context['session_id'], '" class="restore_button">', $txt['restore_message'], '</a></li>';
- // Show a checkbox for quick moderation?
- if (!empty($options['display_quick_mod']) && $options['display_quick_mod'] == 1 && $message['can_remove'])
- echo '
- <li class="inline_mod_check" style="display: none;" id="in_topic_mod_check_', $message['id'], '"></li>';
- if ($message['can_approve'] || $context['can_reply'] || $message['can_modify'] || $message['can_remove'] || $context['can_split'] || $context['can_restore_msg'])
- echo '
- </ul>';
- echo '
- </div>';
- // Ignoring this user? Hide the post.
- if ($ignoring)
- echo '
- <div id="msg_', $message['id'], '_ignored_prompt">
- ', $txt['ignoring_user'], '
- <a href="#" id="msg_', $message['id'], '_ignored_link" style="display: none;">', $txt['show_ignore_user_post'], '</a>
- </div>';
- // Show the post itself, finally!
- echo '
- <div class="post">';
- if (!$message['approved'] && $message['member']['id'] != 0 && $message['member']['id'] == $context['user']['id'])
- echo '
- <div class="approve_post">
- ', $txt['post_awaiting_approval'], '
- </div>';
- echo '
- <div class="inner" id="msg_', $message['id'], '"', '>', $message['body'], '</div>
- </div>';
- // Can the user modify the contents of this post? Show the modify inline image.
- if ($message['can_modify'])
- echo '
- <img src="', $settings['images_url'], '/icons/modify_inline.png" alt="', $txt['modify_msg'], '" title="', $txt['modify_msg'], '" class="modifybutton" id="modify_button_', $message['id'], '" style="cursor: pointer; display: none;" onclick="oQuickModify.modifyMsg(\'', $message['id'], '\')" />';
- // Assuming there are attachments...
- if (!empty($message['attachment']))
- {
- echo '
- <div id="msg_', $message['id'], '_footer" class="attachments smalltext">
- <div style="overflow: ', isBrowser('is_firefox') ? 'visible' : 'auto', ';">';
- $last_approved_state = 1;
- $attachments_per_line = 4;
- $i = 0;
-
- foreach ($message['attachment'] as $attachment)
- {
- // Show a special box for unapproved attachments...
- if ($attachment['is_approved'] != $last_approved_state)
- {
- $last_approved_state = 0;
- echo '
- <fieldset>
- <legend>', $txt['attach_awaiting_approve'];
- if ($context['can_approve'])
- echo '
- [<a href="', $scripturl, '?action=attachapprove;sa=all;mid=', $message['id'], ';', $context['session_var'], '=', $context['session_id'], '">', $txt['approve_all'], '</a>]';
- echo '
- </legend>';
- }
-
- echo '
- <div class="floatleft padding">
- <div class="attachments_top">';
- if ($attachment['is_image'])
- {
- if ($attachment['thumbnail']['has_thumb'])
- echo '
- <a href="', $attachment['href'], ';image" id="link_', $attachment['id'], '" onclick="', $attachment['thumbnail']['javascript'], '"><img src="', $attachment['thumbnail']['href'], '" alt="" id="thumb_', $attachment['id'], '" /></a><br />';
- else
- echo '
- <img src="' . $attachment['href'] . ';image" alt="" width="' . $attachment['width'] . '" height="' . $attachment['height'] . '"/><br />';
- }
-
- echo '
- </div>
- <div class="attachments_bot">
- <a href="' . $attachment['href'] . '"><img src="' . $settings['images_url'] . '/icons/clip.png" class="centericon" alt="*" /> ' . $attachment['name'] . '</a> ';
- if (!$attachment['is_approved'] && $context['can_approve'])
- echo '
- [<a href="', $scripturl, '?action=attachapprove;sa=approve;aid=', $attachment['id'], ';', $context['session_var'], '=', $context['session_id'], '">', $txt['approve'], '</a>] | [<a href="', $scripturl, '?action=attachapprove;sa=reject;aid=', $attachment['id'], ';', $context['session_var'], '=', $context['session_id'], '">', $txt['delete'], '</a>] ';
- echo '
- <br />', $attachment['size'], ($attachment['is_image'] ? ', ' . $attachment['real_width'] . 'x' . $attachment['real_height'] . '<br />' . $txt['attach_viewed'] : '<br />' . $txt['attach_downloaded']) . ' ' . $attachment['downloads'] . ' ' . $txt['attach_times'] . '
- </div>';
-
- echo '
- </div>';
-
- // Next attachment line ?
- if (++$i % $attachments_per_line === 0)
- echo '
- <br class="clear" />';
- }
- // no more attachments, clear the float if its open
- if ($i % $attachments_per_line !== 0)
- echo '
- <br class="clear" />';
-
- // If we had unapproved attachments clean up.
- if ($last_approved_state == 0)
- echo '
- </fieldset>';
- echo '
- </div>
- </div>';
- }
- echo '
- </div>
- <div class="moderatorbar">
- <div class="smalltext modified" id="modified_', $message['id'], '">';
- // Show "<< Last Edit: Time by Person >>" if this post was edited.
- if ($settings['show_modify'] && !empty($message['modified']['name']))
- echo '
- « <em>', $txt['last_edit'], ': ', $message['modified']['time'], ' ', $txt['by'], ' ', $message['modified']['name'], '</em> »';
- echo '
- </div>
- <div class="smalltext reportlinks">';
- // Maybe they want to report this post to the moderator(s)?
- if ($context['can_report_moderator'])
- echo '
- <a href="', $scripturl, '?action=reporttm;topic=', $context['current_topic'], '.', $message['counter'], ';msg=', $message['id'], '">', $txt['report_to_mod'], '</a> ';
- // Can we issue a warning because of this post? Remember, we can't give guests warnings.
- if ($context['can_issue_warning'] && !$message['is_message_author'] && !$message['member']['is_guest'])
- echo '
- <a href="', $scripturl, '?action=profile;area=issuewarning;u=', $message['member']['id'], ';msg=', $message['id'], '"><img src="', $settings['images_url'], '/warn.png" alt="', $txt['issue_warning_post'], '" title="', $txt['issue_warning_post'], '" /></a>';
- echo '
- <img class="centericon" src="', $settings['images_url'], '/ip.png" alt="" />';
- // Show the IP to this user for this post - because you can moderate?
- if (!empty($context['can_moderate_forum']) && !empty($message['member']['ip']))
- echo '
- <a href="', $scripturl, '?action=', !empty($message['member']['is_guest']) ? 'trackip' : 'profile;area=tracking;sa=ip;u=' . $message['member']['id'], ';searchip=', $message['member']['ip'], '">', $message['member']['ip'], '</a> <a href="', $scripturl, '?action=helpadmin;help=see_admin_ip" onclick="return reqOverlayDiv(this.href);" class="help">(?)</a>';
- // Or, should we show it because this is you?
- elseif ($message['can_see_ip'])
- echo '
- <a href="', $scripturl, '?action=helpadmin;help=see_member_ip" onclick="return reqOverlayDiv(this.href);" class="help">', $message['member']['ip'], '</a>';
- // Okay, are you at least logged in? Then we can show something about why IPs are logged...
- elseif (!$context['user']['is_guest'])
- echo '
- <a href="', $scripturl, '?action=helpadmin;help=see_member_ip" onclick="return reqOverlayDiv(this.href);" class="help">', $txt['logged'], '</a>';
- // Otherwise, you see NOTHING!
- else
- echo '
- ', $txt['logged'];
- echo '
- </div>';
- // Are there any custom profile fields for above the signature?
- if (!empty($message['member']['custom_fields']))
- {
- $shown = false;
- foreach ($message['member']['custom_fields'] as $custom)
- {
- if ($custom['placement'] != 2 || empty($custom['value']))
- continue;
- if (empty($shown))
- {
- $shown = true;
- echo '
- <div class="custom_fields_above_signature">
- <ul class="reset nolist">';
- }
- echo '
- <li>', $custom['value'], '</li>';
- }
- if ($shown)
- echo '
- </ul>
- </div>';
- }
- // Show the member's signature?
- if (!empty($message['member']['signature']) && empty($options['show_no_signatures']) && $context['signature_enabled'])
- echo '
- <div class="signature" id="msg_', $message['id'], '_signature">', $message['member']['signature'], '</div>';
- echo '
- </div>
- </div>
- </div>
- <hr class="post_separator" />';
- }
- echo '
- </form>
- </div>';
- // Show the page index... "Pages: [1]".
- echo '
- <div class="pagesection">
- ', template_button_strip($context['normal_buttons'], 'right'), '
- <div class="pagelinks floatleft">', $txt['pages'], ': ', $context['page_index'], !empty($modSettings['topbottomEnable']) ? $context['menu_separator'] . ' <a href="#top"><strong>' . $txt['go_up'] . '</strong></a>' : '', '</div>
- <div class="nextlinks_bottom">', $context['previous_next'], '</div>
- </div>';
- // Show the lower breadcrumbs.
- theme_linktree();
- echo '
- <div id="moderationbuttons">', template_button_strip($context['mod_buttons'], 'bottom', array('id' => 'moderationbuttons_strip')), '</div>';
- // Show the jumpto box, or actually...let Javascript do it.
- echo '
- <div class="plainbox" id="display_jump_to"> </div>';
- if ($context['can_reply'] && !empty($options['display_quick_reply']))
- {
- echo '
- <a id="quickreply"></a>
- <div class="tborder" id="quickreplybox">
- <div class="cat_bar">
- <h3 class="catbg">
- <a href="javascript:oQuickReply.swap();"><img src="', $settings['images_url'], '/', $options['display_quick_reply'] > 1 ? 'collapse' : 'expand', '.png" alt="+" id="quickReplyExpand" class="icon" /></a>
- <a href="javascript:oQuickReply.swap();">', $txt['quick_reply'], '</a>
- </h3>
- </div>
- <div id="quickReplyOptions"', $options['display_quick_reply'] > 1 ? '' : ' style="display: none"', '>
- <div class="roundframe">
- <p class="smalltext lefttext">', $txt['quick_reply_desc'], '</p>
- ', $context['is_locked'] ? '<p class="alert smalltext">' . $txt['quick_reply_warning'] . '</p>' : '',
- $context['oldTopicError'] ? '<p class="alert smalltext">' . sprintf($txt['error_old_topic'], $modSettings['oldTopicDays']) . '</p>' : '', '
- ', $context['can_reply_approved'] ? '' : '<em>' . $txt['wait_for_approval'] . '</em>', '
- ', !$context['can_reply_approved'] && $context['require_verification'] ? '<br />' : '', '
- <form action="', $scripturl, '?board=', $context['current_board'], ';action=post2" method="post" accept-charset="', $context['character_set'], '" name="postmodify" id="postmodify" onsubmit="submitonce(this);" style="margin: 0;">
- <input type="hidden" name="topic" value="', $context['current_topic'], '" />
- <input type="hidden" name="subject" value="', $context['response_prefix'], $context['subject'], '" />
- <input type="hidden" name="icon" value="xx" />
- <input type="hidden" name="from_qr" value="1" />
- <input type="hidden" name="notify" value="', $context['is_marked_notify'] || !empty($options['auto_notify']) ? '1' : '0', '" />
- <input type="hidden" name="not_approved" value="', !$context['can_reply_approved'], '" />
- <input type="hidden" name="goback" value="', empty($options['return_to_post']) ? '0' : '1', '" />
- <input type="hidden" name="last_msg" value="', $context['topic_last_message'], '" />
- <input type="hidden" name="', $context['session_var'], '" value="', $context['session_id'], '" />
- <input type="hidden" name="seqnum" value="', $context['form_sequence_number'], '" />';
- // Guests just need more.
- if ($context['user']['is_guest'])
- echo '
- <strong>', $txt['name'], ':</strong> <input type="text" name="guestname" value="', $context['name'], '" size="25" class="input_text" tabindex="', $context['tabindex']++, '" />
- <strong>', $txt['email'], ':</strong> <input type="text" name="email" value="', $context['email'], '" size="25" class="input_text" tabindex="', $context['tabindex']++, '" /><br />';
- // Is visual verification enabled?
- if ($context['require_verification'])
- echo '
- <strong>', $txt['verification'], ':</strong>', template_control_verification($context['visual_verification_id'], 'quick_reply'), '<br />';
- if ($options['display_quick_reply'] < 3)
- {
- echo '
- <div class="quickReplyContent">
- <textarea cols="600" rows="7" name="message" tabindex="', $context['tabindex']++, '"></textarea>
- </div>';
- }
- else
- {
- // Show the actual posting area...
- if ($context['show_bbc'])
- {
- echo '
- <div id="bbcBox_message"></div>';
- }
- // What about smileys?
- if (!empty($context['smileys']['postform']) || !empty($context['smileys']['popup']))
- echo '
- <div id="smileyBox_message"></div>';
- echo '
- ', template_control_richedit($context['post_box_name'], 'smileyBox_message', 'bbcBox_message'), '
- <script type="text/javascript"><!-- // --><![CDATA[
- function insertQuoteFast(messageid)
- {
- if (window.XMLHttpRequest)
- getXMLDocument(smf_prepareScriptUrl(smf_scripturl) + \'action=quotefast;quote=\' + messageid + \';xml;pb=', $context['post_box_name'], ';mode=\' + (oEditorHandle_', $context['post_box_name'], '.bRichTextEnabled ? 1 : 0), onDocReceived);
- else
- reqWin(smf_prepareScriptUrl(smf_scripturl) + \'action=quotefast;quote=\' + messageid + \';pb=', $context['post_box_name'], ';mode=\' + (oEditorHandle_', $context['post_box_name'], '.bRichTextEnabled ? 1 : 0), 240, 90);
- return false;
- }
- function onDocReceived(XMLDoc)
- {
- var text = \'\';
- for (var i = 0, n = XMLDoc.getElementsByTagName(\'quote\')[0].childNodes.length; i < n; i++)
- text += XMLDoc.getElementsByTagName(\'quote\')[0].childNodes[i].nodeValue;
- oEditorHandle_', $context['post_box_name'], '.insertText(text, false, true);
- ajax_indicator(false);
- }
- // ]]></script>';
- }
- echo '
- <div class="padding">
- <hr class="hrcolor" />
- <input type="submit" name="post" value="', $txt['post'], '" onclick="return submitThisOnce(this);" accesskey="s" tabindex="', $context['tabindex']++, '" class="button_submit" />
- <input type="submit" name="preview" value="', $txt['preview'], '" onclick="return submitThisOnce(this);" accesskey="p" tabindex="', $context['tabindex']++, '" class="button_submit" />';
- if ($context['show_spellchecking'])
- echo '
- <input type="button" value="', $txt['spell_check'], '" onclick="spellCheck(\'postmodify\', \'message\');" tabindex="', $context['tabindex']++, '" class="button_submit" />';
- echo '
- <br class="clear_right" />
- </div>
- </form>
- </div>
- </div>
- </div>';
- }
- else
- echo '
- <br class="clear" />';
- if ($context['show_spellchecking'])
- echo '
- <form action="', $scripturl, '?action=spellcheck" method="post" accept-charset="', $context['character_set'], '" name="spell_form" id="spell_form" target="spellWindow"><input type="hidden" name="spellstring" value="" /></form>
- <script type="text/javascript" src="' . $settings['default_theme_url'] . '/scripts/spellcheck.js"></script>';
- echo '
- <script type="text/javascript" src="' . $settings['default_theme_url'] . '/scripts/topic.js"></script>
- <script type="text/javascript"><!-- // --><![CDATA[';
- if (!empty($options['display_quick_reply']))
- echo '
- var oQuickReply = new QuickReply({
- bDefaultCollapsed: ', !empty($options['display_quick_reply']) && $options['display_quick_reply'] > 1 ? 'false' : 'true', ',
- iTopicId: ', $context['current_topic'], ',
- iStart: ', $context['start'], ',
- sScriptUrl: smf_scripturl,
- sImagesUrl: smf_images_url,
- sContainerId: "quickReplyOptions",
- sImageId: "quickReplyExpand",
- sImageCollapsed: "collapse.png",
- sImageExpanded: "expand.png",
- sJumpAnchor: "quickreply",
- bIsFull: ', !empty($options['display_quick_reply']) && $options['display_quick_reply'] > 2 ? 'true' : 'false', '
- });';
- if (!empty($options['display_quick_mod']) && $options['display_quick_mod'] == 1 && $context['can_remove_post'])
- echo '
- var oInTopicModeration = new InTopicModeration({
- sSelf: \'oInTopicModeration\',
- sCheckboxContainerMask: \'in_topic_mod_check_\',
- aMessageIds: [\'', implode('\', \'', $removableMessageIDs), '\'],
- sSessionId: smf_session_id,
- sSessionVar: smf_session_var,
- sButtonStrip: \'moderationbuttons\',
- sButtonStripDisplay: \'moderationbuttons_strip\',
- bUseImageButton: false,
- bCanRemove: ', $context['can_remove_post'] ? 'true' : 'false', ',
- sRemoveButtonLabel: \'', $txt['quickmod_delete_selected'], '\',
- sRemoveButtonImage: \'delete_selected.png\',
- sRemoveButtonConfirm: \'', $txt['quickmod_confirm'], '\',
- bCanRestore: ', $context['can_restore_msg'] ? 'true' : 'false', ',
- sRestoreButtonLabel: \'', $txt['quick_mod_restore'], '\',
- sRestoreButtonImage: \'restore_selected.png\',
- sRestoreButtonConfirm: \'', $txt['quickmod_confirm'], '\',
- bCanSplit: ', $context['can_split'] ? 'true' : 'false', ',
- sSplitButtonLabel: \'', $txt['quickmod_split_selected'], '\',
- sSplitButtonImage: \'split_selected.png\',
- sSplitButtonConfirm: \'', $txt['quickmod_confirm'], '\',
- sFormId: \'quickModForm\'
- });';
- echo '
- if (\'XMLHttpRequest\' in window)
- {
- var oQuickModify = new QuickModify({
- sScriptUrl: smf_scripturl,
- bShowModify: ', $settings['show_modify'] ? 'true' : 'false', ',
- iTopicId: ', $context['current_topic'], ',
- sTemplateBodyEdit: ', JavaScriptEscape('
- <div id="quick_edit_body_container" style="width: 90%">
- <div id="error_box" style="padding: 4px;" class="error"></div>
- <textarea class="editor" name="message" rows="12" style="' . (isBrowser('is_ie8') ? 'width: 635px; max-width: 100%; min-width: 100%' : 'width: 100%') . '; margin-bottom: 10px;" tabindex="' . $context['tabindex']++ . '">%body%</textarea><br />
- <input type="hidden" name="\' + smf_session_var + \'" value="\' + smf_session_id + \'" />
- <input type="hidden" name="topic" value="' . $context['current_topic'] . '" />
- <input type="hidden" name="msg" value="%msg_id%" />
- <div class="righttext">
- <input type="submit" name="post" value="' . $txt['save'] . '" tabindex="' . $context['tabindex']++ . '" onclick="return oQuickModify.modifySave(\'' . $context['session_id'] . '\', \'' . $context['session_var'] . '\');" accesskey="s" class="button_submit" /> ' . ($context['show_spellchecking'] ? '<input type="button" value="' . $txt['spell_check'] . '" tabindex="' . $context['tabindex']++ . '" onclick="spellCheck(\'quickModForm\', \'message\');" class="button_submit" /> ' : '') . '<input type="submit" name="cancel" value="' . $txt['modify_cancel'] . '" tabindex="' . $context['tabindex']++ . '" onclick="return oQuickModify.modifyCancel();" class="button_submit" />
- </div>
- </div>'), ',
- sTemplateSubjectEdit: ', JavaScriptEscape('<input type="text" style="width: 90%;" name="subject" value="%subject%" size="80" maxlength="80" tabindex="' . $context['tabindex']++ . '" class="input_text" />'), ',
- sTemplateBodyNormal: ', JavaScriptEscape('%body%'), ',
- sTemplateSubjectNormal: ', JavaScriptEscape('<a href="' . $scripturl . '?topic=' . $context['current_topic'] . '.msg%msg_id%#msg%msg_id%" rel="nofollow">%subject%</a>'), ',
- sTemplateTopSubject: ', JavaScriptEscape($txt['topic'] . ': %subject% (' . $txt['read'] . ' ' . $context['num_views'] . ' ' . $txt['times'] . ')'), ',
- sErrorBorderStyle: ', JavaScriptEscape('1px solid red'), '
- });
- aJumpTo[aJumpTo.length] = new JumpTo({
- sContainerId: "display_jump_to",
- sJumpToTemplate: "<label class=\"smalltext\" for=\"%select_id%\">', $context['jump_to']['label'], ':<" + "/label> %dropdown_list%",
- iCurBoardId: ', $context['current_board'], ',
- iCurBoardChildLevel: ', $context['jump_to']['child_level'], ',
- sCurBoardName: "', $context['jump_to']['board_name'], '",
- sBoardChildLevelIndicator: "==",
- sBoardPrefix: "=> ",
- sCatSeparator: "-----------------------------",
- sCatPrefix: "",
- sGoButtonLabel: "', $txt['go'], '"
- });
- aIconLists[aIconLists.length] = new IconList({
- sBackReference: "aIconLists[" + aIconLists.length + "]",
- sIconIdPrefix: "msg_icon_",
- sScriptUrl: smf_scripturl,
- bShowModify: ', $settings['show_modify'] ? 'true' : 'false', ',
- iBoardId: ', $context['current_board'], ',
- iTopicId: ', $context['current_topic'], ',
- sSessionId: smf_session_id,
- sSessionVar: smf_session_var,
- sLabelIconList: "', $txt['message_icon'], '",
- sBoxBackground: "transparent",
- sBoxBackgroundHover: "#ffffff",
- iBoxBorderWidthHover: 1,
- sBoxBorderColorHover: "#adadad" ,
- sContainerBackground: "#ffffff",
- sContainerBorder: "1px solid #adadad",
- sItemBorder: "1px solid #ffffff",
- sItemBorderHover: "1px dotted gray",
- sItemBackground: "transparent",
- sItemBackgroundHover: "#e0e0f0"
- });
- }';
- if (!empty($ignoredMsgs))
- {
- echo '
- ignore_toggles([', implode(', ', $ignoredMsgs), '], ', JavaScriptEscape($txt['show_ignore_user_post']), ');';
- }
- echo '
- // ]]></script>';
-
- }
- ?>
|