1110 lines
No EOL
47 KiB
PHP
1110 lines
No EOL
47 KiB
PHP
<?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.0.10
|
|
*/
|
|
|
|
// The main template for the post page.
|
|
function template_main()
|
|
{
|
|
global $context, $settings, $options, $txt, $scripturl, $modSettings, $counter;
|
|
|
|
// Start the javascript... and boy is there a lot.
|
|
echo '
|
|
<script type="text/javascript"><!-- // --><![CDATA[';
|
|
|
|
// When using Go Back due to fatal_error, allow the form to be re-submitted with changes.
|
|
if ($context['browser']['is_firefox'])
|
|
echo '
|
|
function reActivate()
|
|
{
|
|
document.forms.postmodify.message.readOnly = false;
|
|
}
|
|
window.addEventListener("pageshow", reActivate, false);';
|
|
|
|
// Start with message icons - and any missing from this theme.
|
|
echo '
|
|
var icon_urls = {';
|
|
foreach ($context['icons'] as $icon)
|
|
echo '
|
|
\'', $icon['value'], '\': \'', $icon['url'], '\'', $icon['is_last'] ? '' : ',';
|
|
echo '
|
|
};';
|
|
|
|
// The actual message icon selector.
|
|
echo '
|
|
function showimage()
|
|
{
|
|
document.images.icons.src = icon_urls[document.forms.postmodify.icon.options[document.forms.postmodify.icon.selectedIndex].value];
|
|
}';
|
|
|
|
// If this is a poll - use some javascript to ensure the user doesn't create a poll with illegal option combinations.
|
|
if ($context['make_poll'])
|
|
echo '
|
|
function pollOptions()
|
|
{
|
|
var expire_time = document.getElementById(\'poll_expire\');
|
|
|
|
if (isEmptyText(expire_time) || expire_time.value == 0)
|
|
{
|
|
document.forms.postmodify.poll_hide[2].disabled = true;
|
|
if (document.forms.postmodify.poll_hide[2].checked)
|
|
document.forms.postmodify.poll_hide[1].checked = true;
|
|
}
|
|
else
|
|
document.forms.postmodify.poll_hide[2].disabled = false;
|
|
}
|
|
|
|
var pollOptionNum = 0, pollTabIndex;
|
|
function addPollOption()
|
|
{
|
|
if (pollOptionNum == 0)
|
|
{
|
|
for (var i = 0, n = document.forms.postmodify.elements.length; i < n; i++)
|
|
if (document.forms.postmodify.elements[i].id.substr(0, 8) == \'options-\')
|
|
{
|
|
pollOptionNum++;
|
|
pollTabIndex = document.forms.postmodify.elements[i].tabIndex;
|
|
}
|
|
}
|
|
pollOptionNum++
|
|
|
|
setOuterHTML(document.getElementById(\'pollMoreOptions\'), ', JavaScriptEscape('<li><label for="options-'), ' + pollOptionNum + ', JavaScriptEscape('">' . $txt['option'] . ' '), ' + pollOptionNum + ', JavaScriptEscape('</label>: <input type="text" name="options['), ' + pollOptionNum + ', JavaScriptEscape(']" id="options-'), ' + pollOptionNum + ', JavaScriptEscape('" value="" size="80" maxlength="255" tabindex="'), ' + pollTabIndex + ', JavaScriptEscape('" class="input_text" /></li><li id="pollMoreOptions"></li>'), ');
|
|
}';
|
|
|
|
// If we are making a calendar event we want to ensure we show the current days in a month etc... this is done here.
|
|
if ($context['make_event'])
|
|
echo '
|
|
var monthLength = [31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31];
|
|
|
|
function generateDays()
|
|
{
|
|
var dayElement = document.getElementById(\'day\'), yearElement = document.getElementById(\'year\'), monthElement = document.getElementById(\'month\');
|
|
var days, selected = dayElement.selectedIndex;
|
|
|
|
monthLength[1] = yearElement.options[yearElement.selectedIndex].value % 4 == 0 ? 29 : 28;
|
|
days = monthLength[monthElement.value - 1];
|
|
|
|
while (dayElement.options.length)
|
|
dayElement.options[0] = null;
|
|
|
|
for (i = 1; i <= days; i++)
|
|
dayElement.options[dayElement.length] = new Option(i, i);
|
|
|
|
if (selected < days)
|
|
dayElement.selectedIndex = selected;
|
|
}';
|
|
|
|
// End of the javascript, start the form and display the link tree.
|
|
echo '
|
|
// ]]></script>
|
|
<form action="', $scripturl, '?action=', $context['destination'], ';', empty($context['current_board']) ? '' : 'board=' . $context['current_board'], '" method="post" accept-charset="', $context['character_set'], '" name="postmodify" id="postmodify" class="flow_hidden" onsubmit="', ($context['becomes_approved'] ? '' : 'alert(\'' . $txt['js_post_will_require_approval'] . '\');'), 'submitonce(this);smc_saveEntities(\'postmodify\', [\'subject\', \'', $context['post_box_name'], '\', \'guestname\', \'evtitle\', \'question\'], \'options\');" enctype="multipart/form-data">';
|
|
|
|
// If the user wants to see how their message looks - the preview section is where it's at!
|
|
echo '
|
|
<div id="preview_section"', isset($context['preview_message']) ? '' : ' style="display: none;"', '>
|
|
<div class="cat_bar">
|
|
<h3 class="catbg">
|
|
<span id="preview_subject">', empty($context['preview_subject']) ? '' : $context['preview_subject'], '</span>
|
|
</h3>
|
|
</div>
|
|
<div class="windowbg">
|
|
<span class="topslice"><span></span></span>
|
|
<div class="content">
|
|
<div class="post" id="preview_body">
|
|
', empty($context['preview_message']) ? '<br />' : $context['preview_message'], '
|
|
</div>
|
|
</div>
|
|
<span class="botslice"><span></span></span>
|
|
</div>
|
|
</div><br />';
|
|
|
|
if ($context['make_event'] && (!$context['event']['new'] || !empty($context['current_board'])))
|
|
echo '
|
|
<input type="hidden" name="eventid" value="', $context['event']['id'], '" />';
|
|
|
|
// Start the main table.
|
|
echo '
|
|
<div class="cat_bar">
|
|
<h3 class="catbg">', $context['page_title'], '</h3>
|
|
</div>
|
|
<div>
|
|
<span class="upperframe"><span></span></span>
|
|
<div class="roundframe">', isset($context['current_topic']) ? '
|
|
<input type="hidden" name="topic" value="' . $context['current_topic'] . '" />' : '';
|
|
|
|
// If an error occurred, explain what happened.
|
|
echo '
|
|
<div class="errorbox"', empty($context['post_error']['messages']) ? ' style="display: none"' : '', ' id="errors">
|
|
<dl>
|
|
<dt>
|
|
<strong style="', empty($context['error_type']) || $context['error_type'] != 'serious' ? 'display: none;' : '', '" id="error_serious">', $txt['error_while_submitting'], '</strong>
|
|
</dt>
|
|
<dt class="error" id="error_list">
|
|
', empty($context['post_error']['messages']) ? '' : implode('<br />', $context['post_error']['messages']), '
|
|
</dt>
|
|
</dl>
|
|
</div>';
|
|
|
|
// If this won't be approved let them know!
|
|
if (!$context['becomes_approved'])
|
|
{
|
|
echo '
|
|
<p class="information">
|
|
<em>', $txt['wait_for_approval'], '</em>
|
|
<input type="hidden" name="not_approved" value="1" />
|
|
</p>';
|
|
}
|
|
|
|
// If it's locked, show a message to warn the replyer.
|
|
echo '
|
|
<p class="information"', $context['locked'] ? '' : ' style="display: none"', ' id="lock_warning">
|
|
', $txt['topic_locked_no_reply'], '
|
|
</p>';
|
|
|
|
// The post header... important stuff
|
|
echo '
|
|
<dl id="post_header">';
|
|
|
|
// Guests have to put in their name and email...
|
|
if (isset($context['name']) && isset($context['email']))
|
|
{
|
|
echo '
|
|
<dt>
|
|
<span', isset($context['post_error']['long_name']) || isset($context['post_error']['no_name']) || isset($context['post_error']['bad_name']) ? ' class="error"' : '', ' id="caption_guestname">', $txt['name'], ':</span>
|
|
</dt>
|
|
<dd>
|
|
<input type="text" name="guestname" size="25" value="', $context['name'], '" tabindex="', $context['tabindex']++, '" class="input_text" />
|
|
</dd>';
|
|
|
|
if (empty($modSettings['guest_post_no_email']))
|
|
echo '
|
|
<dt>
|
|
<span', isset($context['post_error']['no_email']) || isset($context['post_error']['bad_email']) ? ' class="error"' : '', ' id="caption_email">', $txt['email'], ':</span>
|
|
</dt>
|
|
<dd>
|
|
<input type="text" name="email" size="25" value="', $context['email'], '" tabindex="', $context['tabindex']++, '" class="input_text" />
|
|
</dd>';
|
|
}
|
|
|
|
if (!empty($context['subaccount_list']))
|
|
{
|
|
echo '
|
|
<dt>', $txt['use_subaccount'], ':</dt>
|
|
<dd>
|
|
<select name="subaccount">';
|
|
foreach($context['subaccount_list'] as $subaccount)
|
|
echo '
|
|
<option value="', $subaccount['id'], '" ', !empty($subaccount['selected']) ? 'selected="selected"' : '', '>', $subaccount['name'], '</option>';
|
|
echo '
|
|
</select>
|
|
</dd>';
|
|
}
|
|
|
|
// Now show the subject box for this post.
|
|
echo '
|
|
<dt>
|
|
<span', isset($context['post_error']['no_subject']) ? ' class="error"' : '', ' id="caption_subject">', $txt['subject'], ':</span>
|
|
</dt>
|
|
<dd>
|
|
<input type="text" name="subject"', $context['subject'] == '' ? '' : ' value="' . $context['subject'] . '"', ' tabindex="', $context['tabindex']++, '" size="80" maxlength="80" class="input_text" />
|
|
</dd>
|
|
<dt class="clear_left">
|
|
', $txt['message_icon'], ':
|
|
</dt>
|
|
<dd>
|
|
<select name="icon" id="icon" onchange="showimage()">';
|
|
|
|
// Loop through each message icon allowed, adding it to the drop down list.
|
|
foreach ($context['icons'] as $icon)
|
|
echo '
|
|
<option value="', $icon['value'], '"', $icon['value'] == $context['icon'] ? ' selected="selected"' : '', '>', $icon['name'], '</option>';
|
|
|
|
echo '
|
|
</select>
|
|
<img src="', $context['icon_url'], '" name="icons" hspace="15" alt="" />
|
|
</dd>
|
|
</dl><hr class="clear" />';
|
|
|
|
// Are you posting a calendar event?
|
|
if ($context['make_event'])
|
|
{
|
|
echo '
|
|
<div id="post_event">
|
|
<fieldset id="event_main">
|
|
<legend><span', isset($context['post_error']['no_event']) ? ' class="error"' : '', ' id="caption_evtitle">', $txt['calendar_event_title'], '</span></legend>
|
|
<input type="text" name="evtitle" maxlength="255" size="60" value="', $context['event']['title'], '" tabindex="', $context['tabindex']++, '" class="input_text" />
|
|
<div class="smalltext">
|
|
<input type="hidden" name="calendar" value="1" />', $txt['calendar_year'], '
|
|
<select name="year" id="year" tabindex="', $context['tabindex']++, '" onchange="generateDays();">';
|
|
|
|
// Show a list of all the years we allow...
|
|
for ($year = $modSettings['cal_minyear']; $year <= $modSettings['cal_maxyear']; $year++)
|
|
echo '
|
|
<option value="', $year, '"', $year == $context['event']['year'] ? ' selected="selected"' : '', '>', $year, ' </option>';
|
|
|
|
echo '
|
|
</select>
|
|
', $txt['calendar_month'], '
|
|
<select name="month" id="month" onchange="generateDays();">';
|
|
|
|
// There are 12 months per year - ensure that they all get listed.
|
|
for ($month = 1; $month <= 12; $month++)
|
|
echo '
|
|
<option value="', $month, '"', $month == $context['event']['month'] ? ' selected="selected"' : '', '>', $txt['months'][$month], ' </option>';
|
|
|
|
echo '
|
|
</select>
|
|
', $txt['calendar_day'], '
|
|
<select name="day" id="day">';
|
|
|
|
// This prints out all the days in the current month - this changes dynamically as we switch months.
|
|
for ($day = 1; $day <= $context['event']['last_day']; $day++)
|
|
echo '
|
|
<option value="', $day, '"', $day == $context['event']['day'] ? ' selected="selected"' : '', '>', $day, ' </option>';
|
|
|
|
echo '
|
|
</select>
|
|
</div>
|
|
</fieldset>';
|
|
|
|
if (!empty($modSettings['cal_allowspan']) || ($context['event']['new'] && $context['is_new_post']))
|
|
{
|
|
echo '
|
|
<fieldset id="event_options">
|
|
<legend>', $txt['calendar_event_options'], '</legend>
|
|
<div class="event_options smalltext">
|
|
<ul class="event_options">';
|
|
|
|
// If events can span more than one day then allow the user to select how long it should last.
|
|
if (!empty($modSettings['cal_allowspan']))
|
|
{
|
|
echo '
|
|
<li>
|
|
', $txt['calendar_numb_days'], '
|
|
<select name="span">';
|
|
|
|
for ($days = 1; $days <= $modSettings['cal_maxspan']; $days++)
|
|
echo '
|
|
<option value="', $days, '"', $days == $context['event']['span'] ? ' selected="selected"' : '', '>', $days, ' </option>';
|
|
|
|
echo '
|
|
</select>
|
|
</li>';
|
|
}
|
|
|
|
// If this is a new event let the user specify which board they want the linked post to be put into.
|
|
if ($context['event']['new'] && $context['is_new_post'])
|
|
{
|
|
echo '
|
|
<li>
|
|
', $txt['calendar_post_in'], '
|
|
<select name="board">';
|
|
foreach ($context['event']['categories'] as $category)
|
|
{
|
|
echo '
|
|
<optgroup label="', $category['name'], '">';
|
|
foreach ($category['boards'] as $board)
|
|
echo '
|
|
<option value="', $board['id'], '"', $board['selected'] ? ' selected="selected"' : '', '>', $board['child_level'] > 0 ? str_repeat('==', $board['child_level'] - 1) . '=>' : '', ' ', $board['name'], ' </option>';
|
|
echo '
|
|
</optgroup>';
|
|
}
|
|
echo '
|
|
</select>
|
|
</li>';
|
|
}
|
|
|
|
echo '
|
|
</ul>
|
|
</div>
|
|
</fieldset>';
|
|
}
|
|
|
|
echo '
|
|
</div>';
|
|
}
|
|
|
|
// If this is a poll then display all the poll options!
|
|
if ($context['make_poll'])
|
|
{
|
|
echo '
|
|
<div id="edit_poll">
|
|
<fieldset id="poll_main">
|
|
<legend><span ', (isset($context['poll_error']['no_question']) ? ' class="error"' : ''), '>', $txt['poll_question'], '</span></legend>
|
|
<input type="text" name="question" value="', isset($context['question']) ? $context['question'] : '', '" tabindex="', $context['tabindex']++, '" size="80" class="input_text" />
|
|
<ul class="poll_main">';
|
|
|
|
// Loop through all the choices and print them out.
|
|
foreach ($context['choices'] as $choice)
|
|
{
|
|
echo '
|
|
<li>
|
|
<label for="options-', $choice['id'], '">', $txt['option'], ' ', $choice['number'], '</label>:
|
|
<input type="text" name="options[', $choice['id'], ']" id="options-', $choice['id'], '" value="', $choice['label'], '" tabindex="', $context['tabindex']++, '" size="80" maxlength="255" class="input_text" />
|
|
</li>';
|
|
}
|
|
|
|
echo '
|
|
<li id="pollMoreOptions"></li>
|
|
</ul>
|
|
<strong><a href="javascript:addPollOption(); void(0);">(', $txt['poll_add_option'], ')</a></strong>
|
|
</fieldset>
|
|
<fieldset id="poll_options">
|
|
<legend>', $txt['poll_options'], '</legend>
|
|
<dl class="settings poll_options">
|
|
<dt>
|
|
<label for="poll_max_votes">', $txt['poll_max_votes'], ':</label>
|
|
</dt>
|
|
<dd>
|
|
<input type="text" name="poll_max_votes" id="poll_max_votes" size="2" value="', $context['poll_options']['max_votes'], '" class="input_text" />
|
|
</dd>
|
|
<dt>
|
|
<label for="poll_expire">', $txt['poll_run'], ':</label><br />
|
|
<em class="smalltext">', $txt['poll_run_limit'], '</em>
|
|
</dt>
|
|
<dd>
|
|
<input type="text" name="poll_expire" id="poll_expire" size="2" value="', $context['poll_options']['expire'], '" onchange="pollOptions();" maxlength="4" class="input_text" /> ', $txt['days_word'], '
|
|
</dd>
|
|
<dt>
|
|
<label for="poll_change_vote">', $txt['poll_do_change_vote'], ':</label>
|
|
</dt>
|
|
<dd>
|
|
<input type="checkbox" id="poll_change_vote" name="poll_change_vote"', !empty($context['poll']['change_vote']) ? ' checked="checked"' : '', ' class="input_check" />
|
|
</dd>';
|
|
|
|
if ($context['poll_options']['guest_vote_enabled'])
|
|
echo '
|
|
<dt>
|
|
<label for="poll_guest_vote">', $txt['poll_guest_vote'], ':</label>
|
|
</dt>
|
|
<dd>
|
|
<input type="checkbox" id="poll_guest_vote" name="poll_guest_vote"', !empty($context['poll_options']['guest_vote']) ? ' checked="checked"' : '', ' class="input_check" />
|
|
</dd>';
|
|
|
|
echo '
|
|
<dt>
|
|
', $txt['poll_results_visibility'], ':
|
|
</dt>
|
|
<dd>
|
|
<input type="radio" name="poll_hide" id="poll_results_anyone" value="0"', $context['poll_options']['hide'] == 0 ? ' checked="checked"' : '', ' class="input_radio" /> <label for="poll_results_anyone">', $txt['poll_results_anyone'], '</label><br />
|
|
<input type="radio" name="poll_hide" id="poll_results_voted" value="1"', $context['poll_options']['hide'] == 1 ? ' checked="checked"' : '', ' class="input_radio" /> <label for="poll_results_voted">', $txt['poll_results_voted'], '</label><br />
|
|
<input type="radio" name="poll_hide" id="poll_results_expire" value="2"', $context['poll_options']['hide'] == 2 ? ' checked="checked"' : '', empty($context['poll_options']['expire']) ? 'disabled="disabled"' : '', ' class="input_radio" /> <label for="poll_results_expire">', $txt['poll_results_after'], '</label>
|
|
</dd>
|
|
</dl>
|
|
</fieldset>
|
|
</div>';
|
|
}
|
|
|
|
// 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');
|
|
|
|
// If this message has been edited in the past - display when it was.
|
|
if (isset($context['last_modified']))
|
|
echo '
|
|
<div class="padding smalltext">
|
|
<strong>', $txt['last_edit'], ':</strong>
|
|
', $context['last_modified'], '
|
|
</div>';
|
|
|
|
// If the admin has enabled the hiding of the additional options - show a link and image for it.
|
|
if (!empty($settings['additional_options_collapsable']))
|
|
echo '
|
|
<div id="postAdditionalOptionsHeader">
|
|
<img src="', $settings['images_url'], '/collapse.gif" alt="-" id="postMoreExpand" style="display: none;" /> <strong><a href="#" id="postMoreExpandLink">', $txt['post_additionalopt'], '</a></strong>
|
|
</div>';
|
|
|
|
// Display the check boxes for all the standard options - if they are available to the user!
|
|
echo '
|
|
<div id="postMoreOptions" class="smalltext">
|
|
<ul class="post_options">
|
|
', $context['can_notify'] ? '<li><input type="hidden" name="notify" value="0" /><label for="check_notify"><input type="checkbox" name="notify" id="check_notify"' . ($context['notify'] || !empty($options['auto_notify']) ? ' checked="checked"' : '') . ' value="1" class="input_check" /> ' . $txt['notify_replies'] . '</label></li>' : '', '
|
|
', $context['can_lock'] ? '<li><input type="hidden" name="lock" value="0" /><label for="check_lock"><input type="checkbox" name="lock" id="check_lock"' . ($context['locked'] ? ' checked="checked"' : '') . ' value="1" class="input_check" /> ' . $txt['lock_topic'] . '</label></li>' : '', '
|
|
<li><label for="check_back"><input type="checkbox" name="goback" id="check_back"' . ($context['back_to_topic'] || !empty($options['return_to_post']) ? ' checked="checked"' : '') . ' value="1" class="input_check" /> ' . $txt['back_to_topic'] . '</label></li>
|
|
', $context['can_sticky'] ? '<li><input type="hidden" name="sticky" value="0" /><label for="check_sticky"><input type="checkbox" name="sticky" id="check_sticky"' . ($context['sticky'] ? ' checked="checked"' : '') . ' value="1" class="input_check" /> ' . $txt['sticky_after'] . '</label></li>' : '', '
|
|
<li><label for="check_smileys"><input type="checkbox" name="ns" id="check_smileys"', $context['use_smileys'] ? '' : ' checked="checked"', ' value="NS" class="input_check" /> ', $txt['dont_use_smileys'], '</label></li>', '
|
|
', $context['can_move'] ? '<li><input type="hidden" name="move" value="0" /><label for="check_move"><input type="checkbox" name="move" id="check_move" value="1" class="input_check" ' . (!empty($context['move']) ? 'checked="checked" ' : '') . '/> ' . $txt['move_after2'] . '</label></li>' : '', '
|
|
', $context['can_announce'] && $context['is_first_post'] ? '<li><label for="check_announce"><input type="checkbox" name="announce_topic" id="check_announce" value="1" class="input_check" ' . (!empty($context['announce']) ? 'checked="checked" ' : '') . '/> ' . $txt['announce_topic'] . '</label></li>' : '', '
|
|
', $context['show_approval'] ? '<li><label for="approve"><input type="checkbox" name="approve" id="approve" value="2" class="input_check" ' . ($context['show_approval'] === 2 ? 'checked="checked"' : '') . ' /> ' . $txt['approve_this_post'] . '</label></li>' : '', '
|
|
</ul>
|
|
</div>';
|
|
|
|
// If this post already has attachments on it - give information about them.
|
|
if (!empty($context['current_attachments']))
|
|
{
|
|
echo '
|
|
<dl id="postAttachment">
|
|
<dt>
|
|
', $txt['attached'], ':
|
|
</dt>
|
|
<dd class="smalltext">
|
|
<input type="hidden" name="attach_del[]" value="0" />
|
|
', $txt['uncheck_unwatchd_attach'], ':
|
|
</dd>';
|
|
foreach ($context['current_attachments'] as $attachment)
|
|
echo '
|
|
<dd class="smalltext">
|
|
<label for="attachment_', $attachment['id'], '"><input type="checkbox" id="attachment_', $attachment['id'], '" name="attach_del[]" value="', $attachment['id'], '"', empty($attachment['unchecked']) ? ' checked="checked"' : '', ' class="input_check" /> ', $attachment['name'], (empty($attachment['approved']) ? ' (' . $txt['awaiting_approval'] . ')' : ''), '</label>
|
|
</dd>';
|
|
echo '
|
|
</dl>';
|
|
}
|
|
|
|
// Is the user allowed to post any additional ones? If so give them the boxes to do it!
|
|
if ($context['can_post_attachment'])
|
|
{
|
|
echo '
|
|
<dl id="postAttachment2">
|
|
<dt>
|
|
', $txt['attach'], ':
|
|
</dt>
|
|
<dd class="smalltext">
|
|
<input type="file" size="60" name="attachment[]" id="attachment1" class="input_file" /> (<a href="javascript:void(0);" onclick="cleanFileInput(\'attachment1\');">', $txt['clean_attach'], '</a>)';
|
|
|
|
// Show more boxes only if they aren't approaching their limit.
|
|
if ($context['num_allowed_attachments'] > 1)
|
|
echo '
|
|
<script type="text/javascript"><!-- // --><![CDATA[
|
|
var allowed_attachments = ', $context['num_allowed_attachments'], ';
|
|
var current_attachment = 1;
|
|
|
|
function addAttachment()
|
|
{
|
|
allowed_attachments = allowed_attachments - 1;
|
|
current_attachment = current_attachment + 1;
|
|
if (allowed_attachments <= 0)
|
|
return alert("', $txt['more_attachments_error'], '");
|
|
|
|
setOuterHTML(document.getElementById("moreAttachments"), \'<dd class="smalltext"><input type="file" size="60" name="attachment[]" id="attachment\' + current_attachment + \'" class="input_file" /> (<a href="javascript:void(0);" onclick="cleanFileInput(\\\'attachment\' + current_attachment + \'\\\');">', $txt['clean_attach'], '</a>)\' + \'</dd><dd class="smalltext" id="moreAttachments"><a href="#" onclick="addAttachment(); return false;">(', $txt['more_attachments'], ')<\' + \'/a><\' + \'/dd>\');
|
|
|
|
return true;
|
|
}
|
|
// ]]></script>
|
|
</dd>
|
|
<dd class="smalltext" id="moreAttachments"><a href="#" onclick="addAttachment(); return false;">(', $txt['more_attachments'], ')</a></dd>';
|
|
|
|
echo '
|
|
<dd class="smalltext">';
|
|
|
|
// Show some useful information such as allowed extensions, maximum size and amount of attachments allowed.
|
|
if (!empty($modSettings['attachmentCheckExtensions']))
|
|
echo '
|
|
', $txt['allowed_types'], ': ', $context['allowed_extensions'], '<br />';
|
|
|
|
if (!empty($context['attachment_restrictions']))
|
|
echo '
|
|
', $txt['attach_restrictions'], ' ', implode(', ', $context['attachment_restrictions']), '<br />';
|
|
|
|
if (!$context['can_post_attachment_unapproved'])
|
|
echo '
|
|
<span class="alert">', $txt['attachment_requires_approval'], '</span>', '<br />';
|
|
|
|
echo '
|
|
</dd>
|
|
</dl>';
|
|
}
|
|
|
|
// Is visual verification enabled?
|
|
if ($context['require_verification'])
|
|
{
|
|
echo '
|
|
<div class="post_verification">
|
|
<span', !empty($context['post_error']['need_qr_verification']) ? ' class="error"' : '', '>
|
|
<strong>', $txt['verification'], ':</strong>
|
|
</span>
|
|
', template_control_verification($context['visual_verification_id'], 'all'), '
|
|
</div>';
|
|
}
|
|
|
|
// Finally, the submit buttons.
|
|
echo '
|
|
<p class="smalltext" id="shortcuts">
|
|
', $context['browser']['is_firefox'] ? $txt['shortcuts_firefox'] : $txt['shortcuts'], '
|
|
</p>
|
|
<p id="post_confirm_buttons" class="righttext">
|
|
', template_control_richedit_buttons($context['post_box_name']);
|
|
|
|
// Option to delete an event if user is editing one.
|
|
if ($context['make_event'] && !$context['event']['new'])
|
|
echo '
|
|
<input type="submit" name="deleteevent" value="', $txt['event_delete'], '" onclick="return confirm(\'', $txt['event_delete_confirm'], '\');" class="button_submit" />';
|
|
|
|
echo '
|
|
</p>
|
|
</div>
|
|
<span class="lowerframe"><span></span></span>
|
|
</div>
|
|
<br class="clear" />';
|
|
|
|
// Assuming this isn't a new topic pass across the last message id.
|
|
if (isset($context['topic_last_message']))
|
|
echo '
|
|
<input type="hidden" name="last_msg" value="', $context['topic_last_message'], '" />';
|
|
|
|
echo '
|
|
<input type="hidden" name="additional_options" id="additional_options" value="', $context['show_additional_options'] ? '1' : '0', '" />
|
|
<input type="hidden" name="', $context['session_var'], '" value="', $context['session_id'], '" />
|
|
<input type="hidden" name="seqnum" value="', $context['form_sequence_number'], '" />
|
|
</form>';
|
|
|
|
echo '
|
|
<script type="text/javascript"><!-- // --><![CDATA[';
|
|
|
|
// The functions used to preview a posts without loading a new page.
|
|
echo '
|
|
var current_board = ', empty($context['current_board']) ? 'null' : $context['current_board'], ';
|
|
var make_poll = ', $context['make_poll'] ? 'true' : 'false', ';
|
|
var txt_preview_title = "', $txt['preview_title'], '";
|
|
var txt_preview_fetch = "', $txt['preview_fetch'], '";
|
|
var new_replies = new Array();
|
|
var reply_counter = ', empty($counter) ? 0 : $counter, ';
|
|
function previewPost()
|
|
{';
|
|
if ($context['browser']['is_firefox'])
|
|
echo '
|
|
// Firefox doesn\'t render <marquee> that have been put it using javascript
|
|
if (document.forms.postmodify.elements[', JavaScriptEscape($context['post_box_name']), '].value.indexOf(\'[move]\') != -1)
|
|
{
|
|
return submitThisOnce(document.forms.postmodify);
|
|
}';
|
|
echo '
|
|
if (window.XMLHttpRequest)
|
|
{
|
|
// Opera didn\'t support setRequestHeader() before 8.01.
|
|
if (\'opera\' in window)
|
|
{
|
|
var test = new XMLHttpRequest();
|
|
if (!(\'setRequestHeader\' in test))
|
|
return submitThisOnce(document.forms.postmodify);
|
|
}
|
|
// !!! Currently not sending poll options and option checkboxes.
|
|
var x = new Array();
|
|
var textFields = [\'subject\', ', JavaScriptEscape($context['post_box_name']), ', \'icon\', \'guestname\', \'email\', \'evtitle\', \'question\', \'topic\', ', JavaScriptEscape($context['session_var']), '];
|
|
var numericFields = [
|
|
\'board\', \'topic\', \'last_msg\',
|
|
\'eventid\', \'calendar\', \'year\', \'month\', \'day\',
|
|
\'poll_max_votes\', \'poll_expire\', \'poll_change_vote\', \'poll_hide\'
|
|
];
|
|
var checkboxFields = [
|
|
\'ns\'
|
|
];
|
|
|
|
for (var i = 0, n = textFields.length; i < n; i++)
|
|
if (textFields[i] in document.forms.postmodify)
|
|
{
|
|
// Handle the WYSIWYG editor.
|
|
if (textFields[i] == ', JavaScriptEscape($context['post_box_name']), ' && ', JavaScriptEscape('oEditorHandle_' . $context['post_box_name']), ' in window && oEditorHandle_', $context['post_box_name'], '.bRichTextEnabled)
|
|
x[x.length] = \'message_mode=1&\' + textFields[i] + \'=\' + oEditorHandle_', $context['post_box_name'], '.getText(false).replace(/&#/g, \'&#\').php_to8bit().php_urlencode();
|
|
else
|
|
x[x.length] = textFields[i] + \'=\' + document.forms.postmodify[textFields[i]].value.replace(/&#/g, \'&#\').php_to8bit().php_urlencode();
|
|
}
|
|
for (var i = 0, n = numericFields.length; i < n; i++)
|
|
if (numericFields[i] in document.forms.postmodify && \'value\' in document.forms.postmodify[numericFields[i]])
|
|
x[x.length] = numericFields[i] + \'=\' + parseInt(document.forms.postmodify.elements[numericFields[i]].value);
|
|
for (var i = 0, n = checkboxFields.length; i < n; i++)
|
|
if (checkboxFields[i] in document.forms.postmodify && document.forms.postmodify.elements[checkboxFields[i]].checked)
|
|
x[x.length] = checkboxFields[i] + \'=\' + document.forms.postmodify.elements[checkboxFields[i]].value;
|
|
|
|
sendXMLDocument(smf_prepareScriptUrl(smf_scripturl) + \'action=post2\' + (current_board ? \';board=\' + current_board : \'\') + (make_poll ? \';poll\' : \'\') + \';preview;xml\', x.join(\'&\'), onDocSent);
|
|
|
|
document.getElementById(\'preview_section\').style.display = \'\';
|
|
setInnerHTML(document.getElementById(\'preview_subject\'), txt_preview_title);
|
|
setInnerHTML(document.getElementById(\'preview_body\'), txt_preview_fetch);
|
|
|
|
return false;
|
|
}
|
|
else
|
|
return submitThisOnce(document.forms.postmodify);
|
|
}
|
|
function onDocSent(XMLDoc)
|
|
{
|
|
if (!XMLDoc)
|
|
{
|
|
document.forms.postmodify.preview.onclick = new function ()
|
|
{
|
|
return true;
|
|
}
|
|
document.forms.postmodify.preview.click();
|
|
}
|
|
|
|
// Show the preview section.
|
|
var preview = XMLDoc.getElementsByTagName(\'smf\')[0].getElementsByTagName(\'preview\')[0];
|
|
setInnerHTML(document.getElementById(\'preview_subject\'), preview.getElementsByTagName(\'subject\')[0].firstChild.nodeValue);
|
|
|
|
var bodyText = \'\';
|
|
for (var i = 0, n = preview.getElementsByTagName(\'body\')[0].childNodes.length; i < n; i++)
|
|
bodyText += preview.getElementsByTagName(\'body\')[0].childNodes[i].nodeValue;
|
|
|
|
setInnerHTML(document.getElementById(\'preview_body\'), bodyText);
|
|
document.getElementById(\'preview_body\').className = \'post\';
|
|
|
|
// Show a list of errors (if any).
|
|
var errors = XMLDoc.getElementsByTagName(\'smf\')[0].getElementsByTagName(\'errors\')[0];
|
|
var errorList = new Array();
|
|
for (var i = 0, numErrors = errors.getElementsByTagName(\'error\').length; i < numErrors; i++)
|
|
errorList[errorList.length] = errors.getElementsByTagName(\'error\')[i].firstChild.nodeValue;
|
|
document.getElementById(\'errors\').style.display = numErrors == 0 ? \'none\' : \'\';
|
|
document.getElementById(\'error_serious\').style.display = errors.getAttribute(\'serious\') == 1 ? \'\' : \'none\';
|
|
setInnerHTML(document.getElementById(\'error_list\'), numErrors == 0 ? \'\' : errorList.join(\'<br />\'));
|
|
|
|
// Show a warning if the topic has been locked.
|
|
document.getElementById(\'lock_warning\').style.display = errors.getAttribute(\'topic_locked\') == 1 ? \'\' : \'none\';
|
|
|
|
// Adjust the color of captions if the given data is erroneous.
|
|
var captions = errors.getElementsByTagName(\'caption\');
|
|
for (var i = 0, numCaptions = errors.getElementsByTagName(\'caption\').length; i < numCaptions; i++)
|
|
if (document.getElementById(\'caption_\' + captions[i].getAttribute(\'name\')))
|
|
document.getElementById(\'caption_\' + captions[i].getAttribute(\'name\')).className = captions[i].getAttribute(\'class\');
|
|
|
|
if (errors.getElementsByTagName(\'post_error\').length == 1)
|
|
document.forms.postmodify.', $context['post_box_name'], '.style.border = \'1px solid red\';
|
|
else if (document.forms.postmodify.', $context['post_box_name'], '.style.borderColor == \'red\' || document.forms.postmodify.', $context['post_box_name'], '.style.borderColor == \'red red red red\')
|
|
{
|
|
if (\'runtimeStyle\' in document.forms.postmodify.', $context['post_box_name'], ')
|
|
document.forms.postmodify.', $context['post_box_name'], '.style.borderColor = \'\';
|
|
else
|
|
document.forms.postmodify.', $context['post_box_name'], '.style.border = null;
|
|
}
|
|
|
|
// Set the new last message id.
|
|
if (\'last_msg\' in document.forms.postmodify)
|
|
document.forms.postmodify.last_msg.value = XMLDoc.getElementsByTagName(\'smf\')[0].getElementsByTagName(\'last_msg\')[0].firstChild.nodeValue;
|
|
|
|
// Remove the new image from old-new replies!
|
|
for (i = 0; i < new_replies.length; i++)
|
|
document.getElementById(\'image_new_\' + new_replies[i]).style.display = \'none\';
|
|
new_replies = new Array();
|
|
|
|
var ignored_replies = new Array(), ignoring;
|
|
var newPosts = XMLDoc.getElementsByTagName(\'smf\')[0].getElementsByTagName(\'new_posts\')[0] ? XMLDoc.getElementsByTagName(\'smf\')[0].getElementsByTagName(\'new_posts\')[0].getElementsByTagName(\'post\') : {length: 0};
|
|
var numNewPosts = newPosts.length;
|
|
if (numNewPosts != 0)
|
|
{
|
|
var newPostsHTML = \'<span id="new_replies"><\' + \'/span>\';
|
|
for (var i = 0; i < numNewPosts; i++)
|
|
{
|
|
new_replies[new_replies.length] = newPosts[i].getAttribute("id");
|
|
|
|
ignoring = false;
|
|
if (newPosts[i].getElementsByTagName("is_ignored")[0].firstChild.nodeValue != 0)
|
|
ignored_replies[ignored_replies.length] = ignoring = newPosts[i].getAttribute("id");
|
|
|
|
newPostsHTML += \'<div class="windowbg\' + (++reply_counter % 2 == 0 ? \'2\' : \'\') + \' core_posts"><span class="topslice"><span></span></span><div class="content" id="msg\' + newPosts[i].getAttribute("id") + \'"><div class="floatleft"><h5>', $txt['posted_by'], ': \' + newPosts[i].getElementsByTagName("poster")[0].firstChild.nodeValue + \'</h5><span class="smalltext">« <strong>', $txt['on'], ':</strong> \' + newPosts[i].getElementsByTagName("time")[0].firstChild.nodeValue + \' »</span> <img src="\' + smf_images_url + \'/', $context['user']['language'], '/new.gif" alt="', $txt['preview_new'], '" id="image_new_\' + newPosts[i].getAttribute("id") + \'" /></div>\';';
|
|
|
|
if ($context['can_quote'])
|
|
echo '
|
|
newPostsHTML += \'<ul class="reset smalltext quickbuttons" id="msg_\' + newPosts[i].getAttribute("id") + \'_quote"><li class="quote_button"><a href="#postmodify" onclick="return insertQuoteFast(\\\'\' + newPosts[i].getAttribute("id") + \'\\\');"><span>',$txt['bbc_quote'],'</span><\' + \'/a></li></ul>\';';
|
|
|
|
echo '
|
|
newPostsHTML += \'<br class="clear" />\';
|
|
|
|
if (ignoring)
|
|
newPostsHTML += \'<div id="msg_\' + newPosts[i].getAttribute("id") + \'_ignored_prompt" class="smalltext">', $txt['ignoring_user'], '<a href="#" id="msg_\' + newPosts[i].getAttribute("id") + \'_ignored_link" style="display: none;">', $txt['show_ignore_user_post'], '</a></div>\';
|
|
|
|
newPostsHTML += \'<div class="list_posts smalltext" id="msg_\' + newPosts[i].getAttribute("id") + \'_body">\' + newPosts[i].getElementsByTagName("message")[0].firstChild.nodeValue + \'<\' + \'/div></div><span class="botslice"><span></span></span></div>\';
|
|
}
|
|
setOuterHTML(document.getElementById(\'new_replies\'), newPostsHTML);
|
|
}
|
|
|
|
var numIgnoredReplies = ignored_replies.length;
|
|
if (numIgnoredReplies != 0)
|
|
{
|
|
for (var i = 0; i < numIgnoredReplies; i++)
|
|
{
|
|
aIgnoreToggles[ignored_replies[i]] = new smc_Toggle({
|
|
bToggleEnabled: true,
|
|
bCurrentlyCollapsed: true,
|
|
aSwappableContainers: [
|
|
\'msg_\' + ignored_replies[i] + \'_body\',
|
|
\'msg_\' + ignored_replies[i] + \'_quote\',
|
|
],
|
|
aSwapLinks: [
|
|
{
|
|
sId: \'msg_\' + ignored_replies[i] + \'_ignored_link\',
|
|
msgExpanded: \'\',
|
|
msgCollapsed: ', JavaScriptEscape($txt['show_ignore_user_post']), '
|
|
}
|
|
]
|
|
});
|
|
}
|
|
}
|
|
|
|
if (typeof(smf_codeFix) != \'undefined\')
|
|
smf_codeFix();
|
|
}';
|
|
|
|
// Code for showing and hiding additional options.
|
|
if (!empty($settings['additional_options_collapsable']))
|
|
echo '
|
|
var oSwapAdditionalOptions = new smc_Toggle({
|
|
bToggleEnabled: true,
|
|
bCurrentlyCollapsed: ', $context['show_additional_options'] ? 'false' : 'true', ',
|
|
funcOnBeforeCollapse: function () {
|
|
document.getElementById(\'additional_options\').value = \'0\';
|
|
},
|
|
funcOnBeforeExpand: function () {
|
|
document.getElementById(\'additional_options\').value = \'1\';
|
|
},
|
|
aSwappableContainers: [
|
|
\'postMoreOptions\',
|
|
\'postAttachment\',
|
|
\'postAttachment2\',
|
|
\'postAttachment3\'
|
|
],
|
|
aSwapImages: [
|
|
{
|
|
sId: \'postMoreExpand\',
|
|
srcExpanded: smf_images_url + \'/collapse.gif\',
|
|
altExpanded: \'-\',
|
|
srcCollapsed: smf_images_url + \'/expand.gif\',
|
|
altCollapsed: \'+\'
|
|
}
|
|
],
|
|
aSwapLinks: [
|
|
{
|
|
sId: \'postMoreExpandLink\',
|
|
msgExpanded: ', JavaScriptEscape($txt['post_additionalopt']), ',
|
|
msgCollapsed: ', JavaScriptEscape($txt['post_additionalopt']), '
|
|
}
|
|
]
|
|
});';
|
|
|
|
echo '
|
|
// ]]></script>';
|
|
|
|
// If the user is replying to a topic show the previous posts.
|
|
if (isset($context['previous_posts']) && count($context['previous_posts']) > 0)
|
|
{
|
|
echo '
|
|
<div id="recent" class="flow_hidden main_section">
|
|
<div class="cat_bar">
|
|
<h3 class="catbg">', $txt['topic_summary'], '</h3>
|
|
</div>
|
|
<span id="new_replies"></span>';
|
|
|
|
$ignored_posts = array();
|
|
foreach ($context['previous_posts'] as $post)
|
|
{
|
|
$ignoring = false;
|
|
if (!empty($post['is_ignored']))
|
|
$ignored_posts[] = $ignoring = $post['id'];
|
|
|
|
echo '
|
|
<div class="', $post['alternate'] == 0 ? 'windowbg' : 'windowbg2', ' core_posts">
|
|
<span class="topslice"><span></span></span>
|
|
<div class="content" id="msg', $post['id'], '">
|
|
<div class="floatleft">
|
|
<h5>', $txt['posted_by'], ': ', $post['poster'], '</h5>
|
|
<span class="smalltext">« <strong>', $txt['on'], ':</strong> ', $post['time'], ' »</span>
|
|
</div>';
|
|
|
|
if ($context['can_quote'])
|
|
{
|
|
echo '
|
|
<ul class="reset smalltext quickbuttons" id="msg_', $post['id'], '_quote">
|
|
<li class="quote_button"><a href="#postmodify" onclick="return insertQuoteFast(', $post['id'], ');"><span>',$txt['bbc_quote'],'</span></a></li>
|
|
</ul>';
|
|
}
|
|
|
|
echo '
|
|
<br class="clear" />';
|
|
|
|
if ($ignoring)
|
|
{
|
|
echo '
|
|
<div id="msg_', $post['id'], '_ignored_prompt" class="smalltext">
|
|
', $txt['ignoring_user'], '
|
|
<a href="#" id="msg_', $post['id'], '_ignored_link" style="display: none;">', $txt['show_ignore_user_post'], '</a>
|
|
</div>';
|
|
}
|
|
|
|
echo '
|
|
<div class="list_posts smalltext" id="msg_', $post['id'], '_body">', $post['message'], '</div>
|
|
</div>
|
|
<span class="botslice"><span></span></span>
|
|
</div>';
|
|
}
|
|
|
|
echo '
|
|
</div>
|
|
<script type="text/javascript"><!-- // --><![CDATA[
|
|
var aIgnoreToggles = new Array();';
|
|
|
|
foreach ($ignored_posts as $post_id)
|
|
{
|
|
echo '
|
|
aIgnoreToggles[', $post_id, '] = new smc_Toggle({
|
|
bToggleEnabled: true,
|
|
bCurrentlyCollapsed: true,
|
|
aSwappableContainers: [
|
|
\'msg_', $post_id, '_body\',
|
|
\'msg_', $post_id, '_quote\',
|
|
],
|
|
aSwapLinks: [
|
|
{
|
|
sId: \'msg_', $post_id, '_ignored_link\',
|
|
msgExpanded: \'\',
|
|
msgCollapsed: ', JavaScriptEscape($txt['show_ignore_user_post']), '
|
|
}
|
|
]
|
|
});';
|
|
}
|
|
|
|
echo '
|
|
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 true;
|
|
}
|
|
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);
|
|
}
|
|
// ]]></script>';
|
|
}
|
|
}
|
|
|
|
// The template for the spellchecker.
|
|
function template_spellcheck()
|
|
{
|
|
global $context, $settings, $options, $txt;
|
|
|
|
// The style information that makes the spellchecker look... like the forum hopefully!
|
|
echo '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
|
<html xmlns="http://www.w3.org/1999/xhtml"', $context['right_to_left'] ? ' dir="rtl"' : '', '>
|
|
<head>
|
|
<title>', $txt['spell_check'], '</title>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=', $context['character_set'], '" />
|
|
<link rel="stylesheet" type="text/css" href="', $settings['theme_url'], '/css/index.css" />
|
|
<style type="text/css">
|
|
body, td
|
|
{
|
|
font-size: small;
|
|
margin: 0;
|
|
background: #f0f0f0;
|
|
color: #000;
|
|
padding: 10px;
|
|
}
|
|
.highlight
|
|
{
|
|
color: red;
|
|
font-weight: bold;
|
|
}
|
|
#spellview
|
|
{
|
|
border-style: outset;
|
|
border: 1px solid black;
|
|
padding: 5px;
|
|
width: 95%;
|
|
height: 314px;
|
|
overflow: auto;
|
|
background: #ffffff;
|
|
}';
|
|
|
|
// As you may expect - we need a lot of javascript for this... load it form the separate files.
|
|
echo '
|
|
</style>
|
|
<script type="text/javascript"><!-- // --><![CDATA[
|
|
var spell_formname = window.opener.spell_formname;
|
|
var spell_fieldname = window.opener.spell_fieldname;
|
|
// ]]></script>
|
|
<script type="text/javascript" src="', $settings['default_theme_url'], '/scripts/spellcheck.js"></script>
|
|
<script type="text/javascript" src="', $settings['default_theme_url'], '/scripts/script.js"></script>
|
|
<script type="text/javascript"><!-- // --><![CDATA[
|
|
', $context['spell_js'], '
|
|
// ]]></script>
|
|
</head>
|
|
<body onload="nextWord(false);">
|
|
<form action="#" method="post" accept-charset="', $context['character_set'], '" name="spellingForm" id="spellingForm" onsubmit="return false;" style="margin: 0;">
|
|
<div id="spellview"> </div>
|
|
<table border="0" cellpadding="4" cellspacing="0" width="100%"><tr class="windowbg">
|
|
<td width="50%" valign="top">
|
|
', $txt['spellcheck_change_to'], '<br />
|
|
<input type="text" name="changeto" style="width: 98%;" class="input_text" />
|
|
</td>
|
|
<td width="50%">
|
|
', $txt['spellcheck_suggest'], '<br />
|
|
<select name="suggestions" style="width: 98%;" size="5" onclick="if (this.selectedIndex != -1) this.form.changeto.value = this.options[this.selectedIndex].text;" ondblclick="replaceWord();">
|
|
</select>
|
|
</td>
|
|
</tr></table>
|
|
<div class="righttext" style="padding: 4px;">
|
|
<input type="button" name="change" value="', $txt['spellcheck_change'], '" onclick="replaceWord();" class="button_submit" />
|
|
<input type="button" name="changeall" value="', $txt['spellcheck_change_all'], '" onclick="replaceAll();" class="button_submit" />
|
|
<input type="button" name="ignore" value="', $txt['spellcheck_ignore'], '" onclick="nextWord(false);" class="button_submit" />
|
|
<input type="button" name="ignoreall" value="', $txt['spellcheck_ignore_all'], '" onclick="nextWord(true);" class="button_submit" />
|
|
</div>
|
|
</form>
|
|
</body>
|
|
</html>';
|
|
}
|
|
|
|
function template_quotefast()
|
|
{
|
|
global $context, $settings, $options, $txt;
|
|
|
|
echo '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
|
<html xmlns="http://www.w3.org/1999/xhtml"', $context['right_to_left'] ? ' dir="rtl"' : '', '>
|
|
<head>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=', $context['character_set'], '" />
|
|
<title>', $txt['retrieving_quote'], '</title>
|
|
<script type="text/javascript" src="', $settings['default_theme_url'], '/scripts/script.js"></script>
|
|
</head>
|
|
<body>
|
|
', $txt['retrieving_quote'], '
|
|
<div id="temporary_posting_area" style="display: none;"></div>
|
|
<script type="text/javascript"><!-- // --><![CDATA[';
|
|
|
|
if ($context['close_window'])
|
|
echo '
|
|
window.close();';
|
|
else
|
|
{
|
|
// Lucky for us, Internet Explorer has an "innerText" feature which basically converts entities <--> text. Use it if possible ;).
|
|
echo '
|
|
var quote = \'', $context['quote']['text'], '\';
|
|
var stage = \'createElement\' in document ? document.createElement("DIV") : document.getElementById("temporary_posting_area");
|
|
|
|
if (\'DOMParser\' in window && !(\'opera\' in window))
|
|
{
|
|
var xmldoc = new DOMParser().parseFromString("<temp>" + \'', $context['quote']['mozilla'], '\'.replace(/\n/g, "_SMF-BREAK_").replace(/\t/g, "_SMF-TAB_") + "</temp>", "text/xml");
|
|
quote = xmldoc.childNodes[0].textContent.replace(/_SMF-BREAK_/g, "\n").replace(/_SMF-TAB_/g, "\t");
|
|
}
|
|
else if (\'innerText\' in stage)
|
|
{
|
|
setInnerHTML(stage, quote.replace(/\n/g, "_SMF-BREAK_").replace(/\t/g, "_SMF-TAB_").replace(/</g, "<").replace(/>/g, ">"));
|
|
quote = stage.innerText.replace(/_SMF-BREAK_/g, "\n").replace(/_SMF-TAB_/g, "\t");
|
|
}
|
|
|
|
if (\'opera\' in window)
|
|
quote = quote.replace(/</g, "<").replace(/>/g, ">").replace(/"/g, \'"\').replace(/&/g, "&");
|
|
|
|
window.opener.oEditorHandle_', $context['post_box_name'], '.InsertText(quote);
|
|
|
|
window.focus();
|
|
setTimeout("window.close();", 400);';
|
|
}
|
|
echo '
|
|
// ]]></script>
|
|
</body>
|
|
</html>';
|
|
}
|
|
|
|
function template_announce()
|
|
{
|
|
global $context, $settings, $options, $txt, $scripturl;
|
|
|
|
echo '
|
|
<div id="announcement">
|
|
<form action="', $scripturl, '?action=announce;sa=send" method="post" accept-charset="', $context['character_set'], '">
|
|
<div class="cat_bar">
|
|
<h3 class="catbg">', $txt['announce_title'], '</h3>
|
|
</div>
|
|
<div class="information">
|
|
', $txt['announce_desc'], '
|
|
</div>
|
|
<div class="windowbg2">
|
|
<span class="topslice"><span></span></span>
|
|
<div class="content">
|
|
<p>
|
|
', $txt['announce_this_topic'], ' <a href="', $scripturl, '?topic=', $context['current_topic'], '.0">', $context['topic_subject'], '</a>
|
|
</p>
|
|
<ul class="reset">';
|
|
|
|
foreach ($context['groups'] as $group)
|
|
echo '
|
|
<li>
|
|
<label for="who_', $group['id'], '"><input type="checkbox" name="who[', $group['id'], ']" id="who_', $group['id'], '" value="', $group['id'], '" checked="checked" class="input_check" /> ', $group['name'], '</label> <em>(', $group['member_count'], ')</em>
|
|
</li>';
|
|
|
|
echo '
|
|
<li>
|
|
<label for="checkall"><input type="checkbox" id="checkall" class="input_check" onclick="invertAll(this, this.form);" checked="checked" /> <em>', $txt['check_all'], '</em></label>
|
|
</li>
|
|
</ul>
|
|
<div id="confirm_buttons">
|
|
<input type="submit" value="', $txt['post'], '" class="button_submit" />
|
|
<input type="hidden" name="', $context['session_var'], '" value="', $context['session_id'], '" />
|
|
<input type="hidden" name="topic" value="', $context['current_topic'], '" />
|
|
<input type="hidden" name="move" value="', $context['move'], '" />
|
|
<input type="hidden" name="goback" value="', $context['go_back'], '" />
|
|
</div>
|
|
</div>
|
|
<span class="botslice"><span></span></span>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
<br />';
|
|
}
|
|
|
|
function template_announcement_send()
|
|
{
|
|
global $context, $settings, $options, $txt, $scripturl;
|
|
|
|
echo '
|
|
<div id="announcement">
|
|
<form action="' . $scripturl . '?action=announce;sa=send" method="post" accept-charset="', $context['character_set'], '" name="autoSubmit" id="autoSubmit">
|
|
<div class="windowbg2">
|
|
<span class="topslice"><span></span></span>
|
|
<div class="content">
|
|
<p>', $txt['announce_sending'], ' <a href="', $scripturl, '?topic=', $context['current_topic'], '.0" target="_blank" class="new_win">', $context['topic_subject'], '</a></p>
|
|
<p><strong>', $context['percentage_done'], '% ', $txt['announce_done'], '</strong></p>
|
|
<div id="confirm_buttons">
|
|
<input type="submit" name="b" value="', $txt['announce_continue'], '" class="button_submit" />
|
|
<input type="hidden" name="', $context['session_var'], '" value="', $context['session_id'], '" />
|
|
<input type="hidden" name="topic" value="', $context['current_topic'], '" />
|
|
<input type="hidden" name="move" value="', $context['move'], '" />
|
|
<input type="hidden" name="goback" value="', $context['go_back'], '" />
|
|
<input type="hidden" name="start" value="', $context['start'], '" />
|
|
<input type="hidden" name="membergroups" value="', $context['membergroups'], '" />
|
|
</div>
|
|
</div>
|
|
<span class="botslice"><span></span></span>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
<br />
|
|
<script type="text/javascript"><!-- // --><![CDATA[
|
|
var countdown = 2;
|
|
doAutoSubmit();
|
|
|
|
function doAutoSubmit()
|
|
{
|
|
if (countdown == 0)
|
|
document.forms.autoSubmit.submit();
|
|
else if (countdown == -1)
|
|
return;
|
|
|
|
document.forms.autoSubmit.b.value = "', $txt['announce_continue'], ' (" + countdown + ")";
|
|
countdown--;
|
|
|
|
setTimeout("doAutoSubmit();", 1000);
|
|
}
|
|
// ]]></script>';
|
|
}
|
|
|
|
?>
|