12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517 |
- <?php
- /**
- * Simple Machines Forum (SMF)
- *
- * @package SMF
- * @author Simple Machines
- * @copyright 2013 Simple Machines and individual contributors
- * @license http://www.simplemachines.org/about/smf/license.php BSD
- *
- * @version 2.1 Alpha 1
- */
- // This is the header for WAP 1.1 output. You can view it with ?wap in the URL.
- function template_wap_above()
- {
- // Show the xml declaration...
- echo '<?xml version="1.0"?', '>
- <!DOCTYPE wml PUBLIC "-//WAPFORUM//DTD WML 1.1//EN" "http://www.wapforum.org/DTD/wml_1.1.xml">
- <wml>
- <head>
- </head>';
- }
- // This is the board index (main page) in WAP 1.1.
- function template_wap_boardindex()
- {
- global $context, $options, $scripturl;
- // This is the "main" card...
- echo '
- <card id="main" title="', $context['page_title'], '">
- <p><strong>', $context['forum_name_html_safe'], '</strong><br /></p>';
- // Show an anchor for each category.
- foreach ($context['categories'] as $category)
- {
- // Skip it if it's empty.
- if (!empty($category['boards']))
- echo '
- <p><a href="#c', $category['id'], '">', $category['name'], '</a><br /></p>';
- }
- // Okay, that's it for the main card.
- echo '
- </card>';
- // Now fill out the deck of cards with the boards in each category.
- foreach ($context['categories'] as $category)
- {
- // Begin the card, and make the name available.
- echo '
- <card id="c', $category['id'], '" title="', strip_tags($category['name']), '">
- <p><strong>', strip_tags($category['name']), '</strong><br /></p>';
- // Now show a link for each board.
- foreach ($category['boards'] as $board)
- echo '
- <p><a href="', $scripturl, '?board=', $board['id'], '.0;wap">', $board['name'], '</a><br /></p>';
- echo '
- </card>';
- }
- }
- // This is the message index (list of topics in a board) for WAP 1.1.
- function template_wap_messageindex()
- {
- global $context, $options, $scripturl, $txt;
- echo '
- <card id="main" title="', $context['page_title'], '">
- <p><strong>', $context['name'], '</strong></p>';
- if (isset($context['boards']) && count($context['boards']) > 0)
- {
- foreach ($context['boards'] as $board)
- echo '
- <p>- <a href="', $scripturl, '?board=', $board['id'], '.0;wap">', $board['name'], '</a><br /></p>';
- echo '
- <p><br /></p>';
- }
- if (!empty($context['topics']))
- {
- echo '
- <p>', $txt['pages'], ': ', !empty($context['links']['prev']) ? '<a href="' . $context['links']['first'] . ';wap"><<</a> <a href="' . $context['links']['prev'] . ';wap"><</a> ' : '', '(', $context['page_info']['current_page'], '/', $context['page_info']['num_pages'], ')', !empty($context['links']['next']) ? ' <a href="' . $context['links']['next'] . ';wap">></a> <a href="' . $context['links']['last'] . ';wap">>></a> ' : '', '<br /></p>';
- foreach ($context['topics'] as $topic)
- echo '
- <p><a href="', $scripturl, '?topic=', $topic['id'], '.0;wap">', $topic['first_post']['subject'], '</a>', (!$topic['approved'] ? ' <em>(' . $txt['awaiting_approval'] . ')</em>' : ''), ' - ', $topic['first_post']['member']['name'], '<br /></p>';
- echo '
- <p>', $txt['pages'], ': ', !empty($context['links']['prev']) ? '<a href="' . $context['links']['first'] . ';wap"><<</a> <a href="' . $context['links']['prev'] . ';wap"><</a> ' : '', '(', $context['page_info']['current_page'], '/', $context['page_info']['num_pages'], ')', !empty($context['links']['next']) ? ' <a href="' . $context['links']['next'] . ';wap">></a> <a href="' . $context['links']['last'] . ';wap">>></a> ' : '', '</p>';
- }
- echo '
- </card>';
- }
- function template_wap_display()
- {
- global $context, $options, $txt;
- echo '
- <card id="main" title="', $context['page_title'], '">
- <p><strong>' . $context['linktree'][1]['name'] . ' > ' . $context['linktree'][count($context['linktree']) - 2]['name'] . '</strong></p>
- <p><strong>', $context['subject'], '</strong></p>
- <p>', $txt['pages'], ': ', !empty($context['links']['prev']) ? '<a href="' . $context['links']['first'] . ';wap"><<</a> <a href="' . $context['links']['prev'] . ';wap"><</a> ' : '', '(', $context['page_info']['current_page'], '/', $context['page_info']['num_pages'], ')', !empty($context['links']['next']) ? ' <a href="' . $context['links']['next'] . ';wap">></a> <a href="' . $context['links']['last'] . ';wap">>></a> ' : '', '<br /><br /></p>';
- while ($message = $context['get_message']())
- {
- // This is a special modification to the post so it will work on phones:
- $message['body'] = preg_replace('~<div class="(?:quote|code)header">(.+?)</div>~', '<br />--- $1 ---', $message['body']);
- $message['body'] = strip_tags(str_replace(
- array(
- '<blockquote>',
- '</blockquote>',
- '<code>',
- '</code>',
- '<li>',
- $txt['code_select'],
- ),
- array(
- '<br>',
- '<br>--- ' . $txt['wireless_end_quote'] . ' ---<br>',
- '<br>',
- '<br>--- ' . $txt['wireless_end_code'] . ' ---<br>',
- '<br>* ',
- '',
- ), $message['body']), '<br>');
- echo '
- <p><u>', $message['member']['name'], '</u>:', (!$message['approved'] ? ' <em>(' . $txt['awaiting_approval'] . ')</em>' : ''), '<br /></p>
- <p>', $message['body'], '<br /><br /></p>';
- }
- echo '
- <p>', $txt['pages'], ': ', !empty($context['links']['prev']) ? '<a href="' . $context['links']['first'] . ';wap"><<</a> <a href="' . $context['links']['prev'] . ';wap"><</a> ' : '', '(', $context['page_info']['current_page'], '/', $context['page_info']['num_pages'], ')', !empty($context['links']['next']) ? ' <a href="' . $context['links']['next'] . ';wap">></a> <a href="' . $context['links']['last'] . ';wap">>></a> ' : '', '</p>
- </card>';
- }
- function template_wap_login()
- {
- global $context, $modSettings, $scripturl, $txt;
- echo '
- <card id="login" title="', $context['page_title'], '">';
- if (isset($context['login_errors']))
- foreach ($context['login_errors'] as $error)
- echo '
- <p><strong>', $error, '</strong></p>';
- echo '
- <p>', $txt['username'], ':<br />
- <input type="text" name="user" class="input_text" /></p>
- <p>', $txt['password'], ':<br />
- <input type="password" name="passwrd" class="input_password" /></p>';
- // Open ID?
- if (!empty($modSettings['enableOpenID']))
- echo '
- <p><strong>—', $txt['or'], '—</strong></p>
- <p>', $txt['openid'], ':<br />
- <input type="text" name="openid_identifier" class="input_text openid_login" size="17" /></p>';
- echo '
- <p><do type="accept" label="', $txt['login'], '">
- <go method="post" href="', $scripturl, '?action=login2;wap">
- <postfield name="user" value="$user" />
- <postfield name="passwrd" value="$passwrd" />
- <postfield name="cookieneverexp" value="1" />
- </go>
- </do></p>
- </card>';
- }
- function template_wap_recent()
- {
- global $context, $options, $scripturl, $txt;
- echo '
- <card id="recent" title="', $context['page_title'], '">
- <p><strong>', $_REQUEST['action'] == 'unread' ? $txt['wireless_recent_unread_posts'] : $txt['wireless_recent_unread_replies'], '</strong></p>';
- if (empty($context['topics']))
- echo '
- <p>', $txt['old_posts'], '</p>';
- else
- {
- echo '
- <p>', $txt['pages'], ': ', !empty($context['links']['prev']) ? '<a href="' . $context['links']['first'] . ';wap"><<</a> <a href="' . $context['links']['prev'] . ';wap"><</a> ' : '', '(', $context['page_info']['current_page'], '/', $context['page_info']['num_pages'], ')', !empty($context['links']['next']) ? ' <a href="' . $context['links']['next'] . ';wap">></a> <a href="' . $context['links']['last'] . ';wap">>></a> ' : '', '<br /><br /></p>';
- foreach ($context['topics'] as $topic)
- {
- echo '
- <p><a href="', $scripturl, '?topic=', $topic['id'], '.msg', $topic['new_from'], ';topicseen;imode#new">', $topic['first_post']['subject'], '</a></p>';
- }
- }
- echo '
- </card>';
- }
- function template_wap_error()
- {
- global $context, $options, $txt, $scripturl;
- echo '
- <card id="main" title="', $context['page_title'], '">
- <p><strong>', $context['error_title'], '</strong></p>
- <p>', $context['error_message'], '</p>
- <p><a href="', $scripturl, '?wap">', $txt['wireless_error_home'], '</a></p>
- </card>';
- }
- function template_wap_below()
- {
- global $context, $options, $txt;
- echo '
- <card id="switch" title="', $txt['wireless_go_to_full_version'], '">
- <p>
- <a href="', $context['linktree'][count($context['linktree']) - 1]['url'], (count($context['linktree']) > 1 ? ';' : '?'), 'nowap" rel="nofollow">', $txt['wireless_go_to_full_version'], '</a>
- </p>
- </card>
- </wml>';
- }
- // The cHTML protocol used for i-mode starts here.
- function template_imode_above()
- {
- global $context, $options, $user_info;
- echo '<!DOCTYPE HTML PUBLIC "-//W3C//DTD Compact HTML 1.0 Draft//EN">
- <html', $context['right_to_left'] ? ' dir="rtl"' : '', '>
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=', $context['character_set'], '" />';
- // Present a canonical url for search engines to prevent duplicate content in their indices.
- if ($user_info['is_guest'] && !empty($context['canonical_url']))
- echo '
- <link rel="canonical" href="', $context['canonical_url'], '" />';
- echo '
- <title>', $context['page_title'], '</title>
- </head>
- <body>';
- }
- function template_imode_boardindex()
- {
- global $context, $options, $scripturl, $txt;
- echo '
- <table border="0" cellspacing="0" cellpadding="0">
- <tr bgcolor="#6d92aa"><td><font color="#ffffff">', $context['forum_name_html_safe'], '</font></td></tr>';
- $count = 0;
- foreach ($context['categories'] as $category)
- {
- if (!empty($category['boards']) || $category['is_collapsed'])
- echo '
- <tr bgcolor="#b6dbff"><td>', $category['can_collapse'] ? '<a href="' . $scripturl . '?action=collapse;c=' . $category['id'] . ';sa=' . ($category['is_collapsed'] ? 'expand;' : 'collapse;') . $context['session_var'] . '=' . $context['session_id'] . ';imode">' : '', $category['name'], $category['can_collapse'] ? '</a>' : '', '</td></tr>';
- foreach ($category['boards'] as $board)
- {
- $count++;
- echo '
- <tr><td>', $board['new'] ? '<font color="#ff0000">' : '', $count < 10 ? '&#' . (59105 + $count) . ';' : '<strong>-</strong>', $board['new'] ? '</font>' : ($board['children_new'] ? '<font color="#ff0000">.</font>' : ''), ' <a href="', $scripturl, '?board=', $board['id'], '.0;imode"', $count < 10 ? ' accesskey="' . $count . '"' : '', '>', $board['name'], '</a></td></tr>';
- }
- }
- echo '
- <tr bgcolor="#6d92aa"><td>', $txt['wireless_options'], '</td></tr>';
- if ($context['user']['is_guest'])
- echo '
- <tr><td><a href="', $scripturl, '?action=login;imode">', $txt['wireless_options_login'], '</a></td></tr>';
- else
- {
- if ($context['allow_pm'])
- echo '
- <tr><td><a href="', $scripturl, '?action=pm;imode">', empty($context['user']['unread_messages']) ? $txt['wireless_pm_inbox'] : sprintf($txt['wireless_pm_inbox_new'], $context['user']['unread_messages']), '</a></td></tr>';
- echo '
- <tr><td><a href="', $scripturl, '?action=unread;imode">', $txt['wireless_recent_unread_posts'], '</a></td></tr>
- <tr><td><a href="', $scripturl, '?action=unreadreplies;imode">', $txt['wireless_recent_unread_replies'], '</a></td></tr>
- <tr><td><a href="', $scripturl, '?action=logout;', $context['session_var'], '=', $context['session_id'], ';imode">', $txt['wireless_options_logout'], '</a></td></tr>';
- }
- echo '
- </table>';
- }
- function template_imode_messageindex()
- {
- global $context, $options, $scripturl, $txt;
- echo '
- <table border="0" cellspacing="0" cellpadding="0">
- <tr bgcolor="#6d92aa"><td><font color="#ffffff">', $context['name'], '</font></td></tr>';
- if (!empty($context['boards']))
- {
- echo '
- <tr bgcolor="#b6dbff"><td>', $txt['sub_boards'], '</td></tr>';
- foreach ($context['boards'] as $board)
- echo '
- <tr><td>', $board['new'] ? '<font color="#ff0000">-</font> ' : ($board['children_new'] ? '-<font color="#ff0000">.</font>' : '- '), '<a href="', $scripturl, '?board=', $board['id'], '.0;imode">', $board['name'], '</a></td></tr>';
- }
- $count = 0;
- if (!empty($context['topics']))
- {
- echo '
- <tr bgcolor="#b6dbff"><td>', $txt['topics'], '</td></tr>
- <tr><td>', !empty($context['links']['prev']) ? '<a href="' . $context['links']['first'] . ';imode"><<</a> <a href="' . $context['links']['prev'] . ';imode"><</a> ' : '', '(', $context['page_info']['current_page'], '/', $context['page_info']['num_pages'], ')', !empty($context['links']['next']) ? ' <a href="' . $context['links']['next'] . ';imode">></a> <a href="' . $context['links']['last'] . ';imode">>></a> ' : '', '</td></tr>';
- foreach ($context['topics'] as $topic)
- {
- $count++;
- echo '
- <tr><td>', $count < 10 ? '&#' . (59105 + $count) . '; ' : '', '<a href="', $scripturl, '?topic=', $topic['id'], '.0;imode"', $count < 10 ? ' accesskey="' . $count . '"' : '', '>', $topic['first_post']['subject'], '</a>', (!$topic['approved'] ? ' <em>(' . $txt['awaiting_approval'] . ')</em>' : ''), $topic['new'] && $context['user']['is_logged'] ? ' [<a href="' . $scripturl . '?topic=' . $topic['id'] . '.msg' . $topic['new_from'] . ';imode#new">' . $txt['new'] . '</a>]' : '', '</td></tr>';
- }
- }
- echo '
- <tr bgcolor="#b6dbff"><td>', $txt['wireless_navigation'], '</td></tr>
- <tr><td> <a href="', $context['links']['up'], ($context['links']['up'] == $scripturl . '?' ? '' : ';'), 'imode" accesskey="0">', $txt['wireless_navigation_up'], '</a></td></tr>', !empty($context['links']['next']) ? '
- <tr><td> <a href="' . $context['links']['next'] . ';imode" accesskey="#">' . $txt['wireless_navigation_next'] . '</a></td></tr>' : '', !empty($context['links']['prev']) ? '
- <tr><td><strong>[*]</strong> <a href="' . $context['links']['prev'] . ';imode" accesskey="*">' . $txt['wireless_navigation_prev'] . '</a></td></tr>' : '', $context['can_post_new'] ? '
- <tr><td><a href="' . $scripturl . '?action=post;board=' . $context['current_board'] . '.0;imode">' . $txt['start_new_topic'] . '</a></td></tr>' : '', '
- </table>';
- }
- function template_imode_display()
- {
- global $context, $options, $scripturl, $board, $txt;
- echo '
- <table border="0" cellspacing="0" cellpadding="0">
- <tr bgcolor="#b6dbff"><td>' . $context['linktree'][1]['name'] . ' > ' . $context['linktree'][count($context['linktree']) - 2]['name'] . '</td></tr>
- <tr bgcolor="#6d92aa"><td><font color="#ffffff">', $context['subject'], '</font></td></tr>
- <tr><td>', !empty($context['links']['prev']) ? '<a href="' . $context['links']['first'] . ';imode"><<</a> <a href="' . $context['links']['prev'] . ';imode"><</a> ' : '', '(', $context['page_info']['current_page'], '/', $context['page_info']['num_pages'], ')', !empty($context['links']['next']) ? ' <a href="' . $context['links']['next'] . ';imode">></a> <a href="' . $context['links']['last'] . ';imode">>></a> ' : '', '</td></tr>';
- while ($message = $context['get_message']())
- {
- // This is a special modification to the post so it will work on phones:
- $message['body'] = preg_replace('~<div class="(?:quote|code)header">(.+?)</div>~', '<br />--- $1 ---', $message['body']);
- $message['body'] = strip_tags(str_replace(
- array(
- '<blockquote>',
- '</blockquote>',
- '<code>',
- '</code>',
- '<li>',
- $txt['code_select'],
- ),
- array(
- '<br />',
- '<br />--- ' . $txt['wireless_end_quote'] . ' ---<br />',
- '<br />',
- '<br />--- ' . $txt['wireless_end_code'] . ' ---<br />',
- '<br />* ',
- '',
- ), $message['body']), '<br>');
- echo '
- <tr><td>', $message['first_new'] ? '
- <a id="new"></a>' : '',
- $context['wireless_moderate'] && $message['member']['id'] ? '<a href="' . $scripturl . '?action=profile;u=' . $message['member']['id'] . ';imode">' . $message['member']['name'] . '</a>' : '<strong>' . $message['member']['name'] . '</strong>', ':
- ', ((empty($context['wireless_more']) && $message['can_modify']) || !empty($context['wireless_moderate']) ? '[<a href="' . $scripturl . '?action=post;msg=' . $message['id'] . ';topic=' . $context['current_topic'] . '.' . $context['start'] . ';imode">' . $txt['wireless_display_edit'] . '</a>]' : ''), (!$message['approved'] ? ' <em>(' . $txt['awaiting_approval'] . ')</em>' : ''), '<br />
- ', $message['body'], '
- </td></tr>';
- }
- echo '
- <tr bgcolor="#b6dbff"><td>', $txt['wireless_navigation'], '</td></tr>
- <tr><td> <a href="', $context['links']['up'], ';imode" accesskey="0">', $txt['wireless_navigation_index'], '</a></td></tr>', $context['user']['is_logged'] ? '
- <tr><td> <a href="' . $scripturl . '?action=markasread;sa=topic;t=' . $context['mark_unread_time']. ';topic=' . $context['current_topic'] . '.' . $context['start'] . ';' . $context['session_var'] . '=' . $context['session_id'] . ';imode" accesskey="1">' . $txt['mark_unread'] . '</a></td></tr>' : '', !empty($context['links']['next']) ? '
- <tr><td><a href="' . $context['links']['next'] . ';imode' . $context['wireless_moderate'] . '" accesskey="#">' . $txt['wireless_navigation_next'] . '</a></td></tr>' : '', !empty($context['links']['prev']) ? '
- <tr><td><a href="' . $context['links']['prev'] . ';imode' . $context['wireless_moderate'] . '" accesskey="*">' . $txt['wireless_navigation_prev'] . '</a></td></tr>' : '', $context['can_reply'] ? '
- <tr><td><a href="' . $scripturl . '?action=post;topic=' . $context['current_topic'] . '.' . $context['start'] . ';imode">' . $txt['reply'] . '</a></td></tr>' : '';
- if (!empty($context['wireless_more']) && empty($context['wireless_moderate']))
- echo '
- <tr><td><a href="', $scripturl, '?topic=', $context['current_topic'], '.', $context['start'], ';moderate;imode">', $txt['wireless_display_moderate'], '</a></td></tr>';
- elseif (!empty($context['wireless_moderate']))
- {
- if ($context['can_sticky'])
- echo '
- <tr><td><a href="', $scripturl, '?action=sticky;topic=', $context['current_topic'], '.', $context['start'], ';', $context['session_var'], '=', $context['session_id'], ';imode">', $txt['wireless_display_' . ($context['is_sticky'] ? 'unsticky' : 'sticky')], '</a></td></tr>';
- if ($context['can_lock'])
- echo '
- <tr><td><a href="', $scripturl, '?action=lock;topic=', $context['current_topic'], '.', $context['start'], ';', $context['session_var'], '=', $context['session_id'], ';imode">', $txt['wireless_display_' . ($context['is_locked'] ? 'unlock' : 'lock')], '</a></td></tr>';
- }
- echo '
- </table>';
- }
- function template_imode_post()
- {
- global $context, $options, $scripturl, $txt, $modSettings;
- // @todo $modSettings['guest_post_no_email']
- echo '
- <form action="', $scripturl, '?action=', $context['destination'], ';board=', $context['current_board'], '.0;imode" method="post">
- <table border="0" cellspacing="0" cellpadding="0">';
- if (!$context['becomes_approved'])
- echo '
- <tr><td>' . $txt['wait_for_approval'] . '<input type="hidden" name="not_approved" value="1" /></td></tr>';
- if ($context['locked'])
- echo '
- <tr><td>' . $txt['topic_locked_no_reply'] . '</td></tr>';
- if (isset($context['name']) && isset($context['email']))
- {
- echo '
- <tr><td>', isset($context['post_error']['long_name']) || isset($context['post_error']['no_name']) ? '<font color="#cc0000">' . $txt['username'] . '</font>' : $txt['username'], ':</td></tr>
- <tr><td><input type="text" name="guestname" value="', $context['name'], '" class="input_text" /></td></tr>';
- if (empty($modSettings['guest_post_no_email']))
- echo '
- <tr><td>', isset($context['post_error']['no_email']) || isset($context['post_error']['bad_email']) ? '<font color="#cc0000">' . $txt['email'] . '</font>' : $txt['email'], ':</td></tr>
- <tr><td><input type="text" name="email" value="', $context['email'], '" class="input_text" /></td></tr>';
- }
- // @todo Needs a more specific imode template.
- if ($context['require_verification'])
- echo '
- <tr><td>', !empty($context['post_error']['need_qr_verification']) ? '<font color="#cc0000">' . $txt['verification'] . '</font>' : $txt['verification'], ':</td></tr>
- <tr><td>', template_control_verification($context['visual_verification_id'], 'all'), '</td></tr>';
- echo '
- <tr><td>', isset($context['post_error']['no_subject']) ? '<font color="#FF0000">' . $txt['subject'] . '</font>' : $txt['subject'], ':</td></tr>
- <tr><td><input type="text" name="subject"', $context['subject'] == '' ? '' : ' value="' . $context['subject'] . '"', ' maxlength="80" class="input_text" /></td></tr>
- <tr><td>', isset($context['post_error']['no_message']) || isset($context['post_error']['long_message']) ? '<font color="#ff0000">' . $txt['message'] . '</font>' : $txt['message'], ':</td></tr>
- <tr><td><textarea name="message" id="message" rows="5" cols="20">', $context['message'], '</textarea></td></tr>
- <tr><td>
- <input type="submit" name="post" value="', $context['submit_label'], '" class="button_submit" />
- <input type="hidden" name="icon" value="wireless" />
- <input type="hidden" name="goback" value="', $context['back_to_topic'] || !empty($options['return_to_post']) ? '1' : '0', '" />
- <input type="hidden" name="seqnum" value="', $context['form_sequence_number'], '" />
- <input type="hidden" name="', $context['session_var'], '" value="', $context['session_id'], '" />', isset($context['current_topic']) ? '
- <input type="hidden" name="topic" value="' . $context['current_topic'] . '" />' : '', '
- <input type="hidden" name="notify" value="', $context['notify'] || !empty($options['auto_notify']) ? '1' : '0', '" />
- </td></tr>
- <tr><td>
-  ', !empty($context['current_topic']) ? '<a href="' . $scripturl . '?topic=' . $context['current_topic'] . '.new;imode">' . $txt['wireless_navigation_topic'] . '</a>' : '<a href="' . $scripturl . '?board=' . $context['current_board'] . '.0;imode" accesskey="0">' . $txt['wireless_navigation_index'] . '</a>', '
- </td></tr>
- </table>
- </form>';
- }
- function template_imode_login()
- {
- global $context, $options, $scripturl, $txt, $modSettings;
- echo '
- <form action="', $scripturl, '?action=login2;imode" method="post">
- <table border="0" cellspacing="0" cellpadding="0">
- <tr bgcolor="#b6dbff"><td>', $txt['login'], '</td></tr>';
- if (isset($context['login_errors']))
- foreach ($context['login_errors'] as $error)
- echo '
- <tr><td><strong><font color="#ff00000">', $error, '</strong></td></tr>';
- echo '
- <tr><td>', $txt['username'], ':</td></tr>
- <tr><td><input type="text" name="user" size="10" class="input_text" /></td></tr>
- <tr><td>', $txt['password'], ':</td></tr>
- <tr><td><input type="password" name="passwrd" size="10" class="input_password" /></td></tr>';
- // Open ID?
- if (!empty($modSettings['enableOpenID']))
- echo '
- <tr><td><strong>—', $txt['or'], '—</strong></td></tr>
- <tr><td>', $txt['openid'], ':</td></tr>
- <tr><td><input type="text" name="openid_identifier" class="input_text openid_login" size="17" /></td></tr>';
- echo '
- <tr><td><input type="submit" value="', $txt['login'], '" class="button_submit" /><input type="hidden" name="cookieneverexp" value="1" /></td></tr>
- <tr bgcolor="#b6dbff"><td>', $txt['wireless_navigation'], '</td></tr>
- <tr><td>[0] <a href="', $scripturl, '?imode" accesskey="0">', $txt['wireless_navigation_up'], '</a></td></tr>
- </table>
- </form>';
- }
- function template_imode_pm()
- {
- global $context, $options, $scripturl, $txt, $user_info;
- if ($_REQUEST['action'] == 'findmember')
- {
- echo '
- <form action="', $scripturl, '?action=findmember;', $context['session_var'], '=', $context['session_id'], ';imode" method="post">
- <table border="0" cellspacing="0" cellpadding="0">
- <tr bgcolor="#6d92aa"><td><font color="#ffffff">', $txt['wireless_pm_search_member'], '</font></td></tr>
- <tr bgcolor="#b6dbff"><td>', $txt['find_members'], '</td></tr>
- <tr><td>
- <strong>', $txt['wireless_pm_search_name'], ':</strong>
- <input type="text" name="search" value="', isset($context['last_search']) ? $context['last_search'] : '', '" class="input_text" />', empty($_REQUEST['u']) ? '' : '
- <input type="hidden" name="u" value="' . $_REQUEST['u'] . '" />', '
- </td></tr>
- <tr><td><input type="submit" value="', $txt['search'], '" class="button_submit" /></td></tr>';
- if (!empty($context['last_search']))
- {
- echo '
- <tr bgcolor="#b6dbff"><td>', $txt['find_results'], '</td></tr>';
- if (empty($context['results']))
- echo '
- <tr bgcolor="#b6dbff"><td>[-] ', $txt['find_no_results'], '</tr></td>';
- else
- {
- echo '
- <tr bgcolor="#b6dbff"><td>', empty($context['links']['prev']) ? '' : '<a href="' . $context['links']['first'] . ';imode"><<</a> <a href="' . $context['links']['prev'] . ';imode"><</a> ', '(', $context['page_info']['current_page'], '/', $context['page_info']['num_pages'], ')', empty($context['links']['next']) ? '' : ' <a href="' . $context['links']['next'] . ';imode">></a> <a href="' . $context['links']['last'] . ';imode">>></a> ', '</tr></td>';
- $count = 0;
- foreach ($context['results'] as $result)
- {
- $count++;
- echo '
- <tr bgcolor="#b6dbff"><td>
- ', $count < 10 ? '&#' . (59105 + $count) . '; ' : '', '<a href="', $scripturl, '?action=pm;sa=send;u=', empty($_REQUEST['u']) ? $result['id'] : $_REQUEST['u'] . ',' . $result['id'], ';imode"', $count < 10 ? ' accesskey="' . $count . '"' : '', '>', $result['name'], '</a>
- </tr></td>';
- }
- }
- }
- echo '
- <tr bgcolor="#b6dbff"><td>', $txt['wireless_navigation'], '</tr></td>
- <tr><td>[0] <a href="', $context['links']['up'], ';imode" accesskey="0">', $txt['wireless_navigation_up'], '</a></tr></td>';
- if (!empty($context['results']))
- echo empty($context['links']['next']) ? '' : '
- <tr><td>[#] <a href="' . $context['links']['next'] . ';imode" accesskey="#">' . $txt['wireless_navigation_next'] . '</a></tr></td>', empty($context['links']['prev']) ? '' : '
- <tr><td>[*] <a href="' . $context['links']['prev'] . ';imode" accesskey="*">' . $txt['wireless_navigation_prev'] . '</a></tr></td>';
- echo '
- </table>
- </form>';
- }
- elseif (!empty($_GET['sa']))
- {
- echo '
- <table border="0" cellspacing="0" cellpadding="0">';
- if ($_GET['sa'] == 'addbuddy')
- {
- echo '
- <tr bgcolor="#6d92aa"><td><font color="#ffffff">', $txt['wireless_pm_add_buddy'], '</font></td></tr>
- <tr bgcolor="#b6dbff"><td>', $txt['wireless_pm_select_buddy'], '</td></tr>';
- $count = 0;
- foreach ($context['buddies'] as $buddy)
- {
- $count++;
- if ($buddy['selected'])
- echo '
- <tr><td>[-] <span style="color: gray">', $buddy['name'], '</span></tr></td>';
- else
- echo '
- <tr><td>
- ', $count < 10 ? '&#' . (59105 + $count) . '; ' : '', '<a href="', $buddy['add_href'], ';imode"', $count < 10 ? ' accesskey="' . $count . '"' : '', '>', $buddy['name'], '</a>
- </tr></td>';
- }
- echo '
- <tr bgcolor="#b6dbff"><td>', $txt['wireless_navigation'], '</tr></td>
- <tr><td>[0] <a href="', $context['pm_href'], ';imode" accesskey="0">', $txt['wireless_navigation_up'], '</a></tr></td>
- </table>';
- }
- if ($_GET['sa'] == 'send' || $_GET['sa'] == 'send2')
- {
- echo '
- <form action="', $scripturl, '?action=pm;sa=send2;imode" method="post">
- <table border="0" cellspacing="0" cellpadding="0">
- <tr bgcolor="#6d92aa"><td><font color="#ffffff">', $txt['new_message'], '</tr></td>', empty($context['post_error']['messages']) ? '' : '
- <tr><td><font color="#ff0000">' . implode('<br />', $context['post_error']['messages']) . '</font></tr></td>', '
- <tr><td>
- <strong>', $txt['pm_to'], ':</strong> ';
- if (empty($context['recipients']['to']))
- echo $txt['wireless_pm_no_recipients'];
- else
- {
- $to_names = array();
- $ids = array();
- foreach ($context['recipients']['to'] as $to)
- {
- $ids[] = $to['id'];
- $to_names[] = $to['name'];
- }
- echo implode(', ', $to_names);
- $ids = implode(',', $ids);
- }
- echo '
- ', empty($ids) ? '' : '<input type="hidden" name="u" value="' . $ids . '" />', '<br />
- <a href="', $scripturl, '?action=findmember', empty($ids) ? '' : ';u=' . $ids, ';', $context['session_var'], '=', $context['session_id'], ';imode">', $txt['wireless_pm_search_member'], '</a>', empty($user_info['buddies']) ? '' : '<br />
- <a href="' . $scripturl . '?action=pm;sa=addbuddy' . (empty($ids) ? '' : ';u=' . $ids) . ';imode">' . $txt['wireless_pm_add_buddy'] . '</a>', '
- </tr></td>
- <tr><td>
- <strong>', $txt['subject'], ':</strong> <input type="text" name="subject" value="', $context['subject'], '" class="input_text" />
- </tr></td>
- <tr><td>
- <strong>', $txt['message'], ':</strong><br />
- <textarea name="message" id="message" rows="5" cols="20">', $context['message'], '</textarea>
- </tr></td>
- <tr><td>
- <input type="submit" value="', $txt['send_message'], '" class="button_submit" />
- <input type="hidden" name="', $context['session_var'], '" value="', $context['session_id'], '" />
- <input type="hidden" name="seqnum" value="', $context['form_sequence_number'], '" />
- <input type="hidden" name="replied_to" value="', !empty($context['quoted_message']['id']) ? $context['quoted_message']['id'] : 0, '" />
- <input type="hidden" name="pm_head" value="', !empty($context['quoted_message']['pm_head']) ? $context['quoted_message']['pm_head'] : 0, '" />
- <input type="hidden" name="f" value="', isset($context['folder']) ? $context['folder'] : '', '" />
- <input type="hidden" name="l" value="', isset($context['current_label_id']) ? $context['current_label_id'] : -1, '" />
- </tr></td>';
- if ($context['reply'])
- echo '
- <tr bgcolor="#b6dbff"><td>', $txt['wireless_pm_reply_to'], '</tr></td>
- <tr><td><strong>', $context['quoted_message']['subject'], '</strong></tr></td>
- <tr><td>', $context['quoted_message']['body'], '</tr></td>';
- echo '
- <tr bgcolor="#b6dbff"><td>', $txt['wireless_navigation'], '</tr></td>
- <tr><td>[0] <a href="', $scripturl, '?action=pm;imode" accesskey="0">', $txt['wireless_navigation_up'], '</a></tr></td>
- </table>
- </form>';
- }
- }
- elseif (empty($_GET['pmsg']))
- {
- echo '
- <table border="0" cellspacing="0" cellpadding="0">
- <tr bgcolor="#6d92aa"><td><font color="#ffffff">', $context['current_label_id'] == -1 ? $txt['wireless_pm_inbox'] : $txt['pm_current_label'] . ': ' . $context['current_label'], '</td></tr>
- <tr><td>', empty($context['links']['prev']) ? '' : '<a href="' . $context['links']['first'] . ';imode"><<</a> <a href="' . $context['links']['prev'] . ';imode"><</a> ', '(', $context['page_info']['current_page'], '/', $context['page_info']['num_pages'], ')', empty($context['links']['next']) ? '' : ' <a href="' . $context['links']['next'] . ';imode">></a> <a href="' . $context['links']['last'] . ';imode">>></a> ', '</tr></td>';
- $count = 0;
- while ($message = $context['get_pmessage']())
- {
- $count++;
- echo '
- <tr><td>
- ', $count < 10 ? '&#' . (59105 + $count) . '; ' : '', '<a href="', $scripturl, '?action=pm;start=', $context['start'], ';pmsg=', $message['id'], ';l=', $context['current_label_id'], ';imode"', $count < 10 ? ' accesskey="' . $count . '"' : '', '>', $message['subject'], ' <em>', $txt['wireless_pm_by'], '</em> ', $message['member']['name'], '</a>', $message['is_unread'] ? ' [' . $txt['new'] . ']' : '', '
- </td></tr>';
- }
- if ($context['currently_using_labels'])
- {
- $labels = array();
- ksort($context['labels']);
- foreach ($context['labels'] as $label)
- $labels[] = '<a href="' . $scripturl . '?action=pm;l=' . $label['id'] . ';imode">' . $label['name'] . '</a>' . (!empty($label['unread_messages']) ? ' (' . $label['unread_messages'] . ')' : '');
- echo '
- <tr bgcolor="#6d92aa"><td><font color="#ffffff">', $txt['pm_labels'], '</font></td></tr>
- <tr><td>
- ', implode(', ', $labels), '
- </td></tr>';
- }
- echo '
- <tr bgcolor="#b6dbff"><td>', $txt['wireless_navigation'], '</tr></td>
- <tr><td>[0] <a href="', $scripturl, '?imode" accesskey="0">', $txt['wireless_navigation_up'], '</a></tr></td>', empty($context['links']['next']) ? '' : '
- <tr><td>[#] <a href="' . $context['links']['next'] . ';imode" accesskey="#">' . $txt['wireless_navigation_next'] . '</a></tr></td>', empty($context['links']['prev']) ? '' : '
- <tr><td>[*] <a href="' . $context['links']['prev'] . ';imode" accesskey="*">' . $txt['wireless_navigation_prev'] . '</a></tr></td>', $context['can_send_pm'] ? '
- <tr><td><a href="' . $scripturl . '?action=pm;sa=send;imode">' . $txt['new_message'] . '</a></tr></td>' : '', '
- </table>';
- }
- else
- {
- $message = $context['get_pmessage']();
- $message['body'] = preg_replace('~<div class="(?:quote|code)header">(.+?)</div>~', '<br />--- $1 ---', $message['body']);
- $message['body'] = strip_tags(str_replace(
- array(
- '<blockquote>',
- '</blockquote>',
- '<code>',
- '</code>',
- '<li>',
- $txt['code_select'],
- ),
- array(
- '<br />',
- '<br />--- ' . $txt['wireless_end_quote'] . ' ---<br />',
- '<br />',
- '<br />--- ' . $txt['wireless_end_code'] . ' ---<br />',
- '<br />* ',
- '',
- ), $message['body']), '<br>');
- echo '
- <table border="0" cellspacing="0" cellpadding="0">
- <tr bgcolor="#6d92aa"><td><font color="#ffffff">', $message['subject'], '</td></tr>
- <tr bgcolor="#b6dbff"><td>
- <strong>', $txt['wireless_pm_by'], ':</strong> ', $message['member']['name'], '<br />
- <strong>', $txt['on'], ':</strong> ', $message['time'], '
- </td></tr>
- <tr><td>
- ', $message['body'], '
- </td></tr>
- <tr bgcolor="#b6dbff"><td>', $txt['wireless_navigation'], '</tr></td>
- <tr><td>[0] <a href="', $scripturl, '?action=pm;start=', $context['start'], ';l=', $context['current_label_id'], ';imode" accesskey="0">', $txt['wireless_navigation_up'], '</a></tr></td>';
- if ($context['can_send_pm'])
- echo '
- <tr><td><a href="', $scripturl, '?action=pm;sa=send;pmsg=', $message['id'], ';u=', $message['member']['id'], ';reply;imode">', $txt['wireless_pm_reply'], '</a></tr></td>';
- if ($context['can_send_pm'] && $message['number_recipients'] > 1)
- echo '
- <tr><td><a href="', $scripturl, '?action=pm;sa=send;pmsg=', $message['id'], ';u=all;reply;imode">', $txt['wireless_pm_reply_all'], '</a></tr></td>';
- echo '
- </table>';
- }
- }
- function template_imode_recent()
- {
- global $context, $options, $scripturl, $txt;
- echo '
- <table border="0" cellspacing="0" cellpadding="0">
- <tr bgcolor="#6d92aa"><td><font color="#ffffff">', $_REQUEST['action'] == 'unread' ? $txt['wireless_recent_unread_posts'] : $txt['wireless_recent_unread_replies'], '</tr></td>';
- $count = 0;
- if (empty($context['topics']))
- echo '
- <tr><td>', $txt['old_posts'], '</td></tr>';
- else
- {
- echo '
- <tr><td>', !empty($context['links']['prev']) ? '<a href="' . $context['links']['first'] . ';imode"><<</a> <a href="' . $context['links']['prev'] . ';imode"><</a> ' : '', '(', $context['page_info']['current_page'], '/', $context['page_info']['num_pages'], ')', !empty($context['links']['next']) ? ' <a href="' . $context['links']['next'] . ';imode">></a> <a href="' . $context['links']['last'] . ';imode">>></a> ' : '', '</td></tr>';
- foreach ($context['topics'] as $topic)
- {
- $count++;
- echo '
- <tr><td>', $count < 10 ? '&#' . (59105 + $count) . '; ' : '', '<a href="', $scripturl, '?topic=', $topic['id'], '.msg', $topic['new_from'], ';topicseen;imode#new"', $count < 10 ? ' accesskey="' . $count . '"' : '', '>', $topic['first_post']['subject'], '</a></td></tr>';
- }
- }
- echo '
- <tr bgcolor="#b6dbff"><td>', $txt['wireless_navigation'], '</td></tr>
- <tr><td>[0] <a href="', $context['links']['up'], '?imode" accesskey="0">', $txt['wireless_navigation_up'], '</a></td></tr>', !empty($context['links']['next']) ? '
- <tr><td>[#] <a href="' . $context['links']['next'] . ';imode" accesskey="#">' . $txt['wireless_navigation_next'] . '</a></td></tr>' : '', !empty($context['links']['prev']) ? '
- <tr><td>[*] <a href="' . $context['links']['prev'] . ';imode" accesskey="*">' . $txt['wireless_navigation_prev'] . '</a></td></tr>' : '', '
- </table>';
- }
- function template_imode_error()
- {
- global $context, $options, $txt, $scripturl;
- echo '
- <table border="0" cellspacing="0" cellpadding="0">
- <tr bgcolor="#6d92aa"><td><font color="#ffffff">', $context['error_title'], '</font></td></tr>
- <tr><td>', $context['error_message'], '</td></tr>
- <tr class="windowbg"><td>[0] <a href="', $scripturl, '?imode" accesskey="0">', $txt['wireless_error_home'], '</a></td></tr>
- </table>';
- }
- function template_imode_profile()
- {
- global $context, $options, $scripturl, $board, $txt;
- echo '
- <table border="0" cellspacing="0" cellpadding="0">
- <tr bgcolor="#6d92aa"><td><font color="#ffffff">', $txt['summary'], ' - ', $context['member']['name'], '</font></td></tr>
- <tr><td>
- <strong>', $txt['name'], ':</strong> ', $context['member']['name'], '
- </td></tr>
- <tr><td>
- <strong>', $txt['position'], ': </strong>', (!empty($context['member']['group']) ? $context['member']['group'] : $context['member']['post_group']), '
- </td></tr>
- <tr><td>
- <strong>', $txt['lastLoggedIn'], ':</strong> ', $context['member']['last_login'], '
- </td></tr>';
- if (!empty($context['member']['bans']))
- {
- echo '
- <tr><td>
- <font color="red"><strong>', $txt['user_banned_by_following'], ':</strong></font>';
- foreach ($context['member']['bans'] as $ban)
- echo '
- <br />', $ban['explanation'], '';
- echo '
- </td></tr>';
- }
- echo '
- <tr bgcolor="#b6dbff"><td>', $txt['additional_info'], '</td></tr>';
- if (!$context['user']['is_owner'] && $context['can_send_pm'])
- echo '
- <tr><td><a href="', $scripturl, '?action=pm;sa=send;u=', $context['id_member'], ';imode">', $txt['wireless_profile_pm'], '.</a></td></tr>';
- if (!$context['user']['is_owner'] && !empty($context['can_edit_ban']))
- echo '
- <tr><td><a href="', $scripturl, '?action=admin;area=ban;sa=add;u=', $context['id_member'], ';imode">', $txt['profileBanUser'], '.</a></td></tr>';
- echo '
- <tr><td><a href="', $scripturl, '?imode">', $txt['wireless_error_home'], '.</a></td></tr>';
- echo '
- </table>';
- }
- function template_imode_ban_edit()
- {
- global $context, $options, $scripturl, $board, $txt, $modSettings;
- echo '
- <form action="', $scripturl, '?action=admin;area=ban;sa=add;imode" method="post">
- <table border="0" cellspacing="0" cellpadding="0">
- <tr bgcolor="#6d92aa"><td><font color="#ffffff">', $context['ban']['is_new'] ? $txt['ban_add_new'] : $txt['ban_edit'] . ' \'' . $context['ban']['name'] . '\'', '</font></td></tr>
- <tr><td>
- <strong>', $txt['ban_name'], ': </strong>
- <input type="text" name="ban_name" value="', $context['ban']['name'], '" size="20" class="input_text" />
- </td></tr>
- <tr><td>
- <strong>', $txt['ban_expiration'], ': </strong><br />
- <input type="radio" name="expiration" value="never" ', $context['ban']['expiration']['status'] == 'never' ? ' checked="checked"' : '', ' class="input_radio" /> ', $txt['never'], '<br />
- <input type="radio" name="expiration" value="one_day" ', $context['ban']['expiration']['status'] == 'one_day' ? ' checked="checked"' : '', ' class="input_radio" /> ', $txt['ban_will_expire_within'], ' <input type="text" name="expire_date" size="3" value="', $context['ban']['expiration']['days'], '" /> ', $txt['ban_days'], '<br />
- <input type="radio" name="expiration" value="expired" ', $context['ban']['expiration']['status'] == 'expired' ? ' checked="checked"' : '', ' class="input_radio" /> ', $txt['ban_expired'], '<br />
- </td></tr>
- <tr><td>
- <strong>', $txt['ban_reason'], ': </strong>
- <input type="text" name="reason" value="', $context['ban']['reason'], '" size="20" class="input_text" />
- </td></tr>
- <tr><td>
- <strong>', $txt['ban_notes'], ': </strong><br />
- <textarea name="notes" cols="20" rows="3">', $context['ban']['notes'], '</textarea>
- </td></tr>
- <tr><td>
- <strong>', $txt['ban_restriction'], ': </strong><br />
- <input type="checkbox" name="full_ban" value="1"', $context['ban']['cannot']['access'] ? ' checked="checked"' : '', ' class="input_check" /> ', $txt['ban_full_ban'], '<br />
- <input type="checkbox" name="cannot_post" value="1"', $context['ban']['cannot']['post'] ? ' checked="checked"' : '', ' class="input_check" /> ', $txt['ban_cannot_post'], '<br />
- <input type="checkbox" name="cannot_register" value="1"', $context['ban']['cannot']['register'] ? ' checked="checked"' : '', ' class="input_check" /> ', $txt['ban_cannot_register'], '<br />
- <input type="checkbox" name="cannot_login" value="1"', $context['ban']['cannot']['login'] ? ' checked="checked"' : '', ' class="input_check" /> ', $txt['ban_cannot_login'], '
- </td></tr>';
- if (!empty($context['ban_suggestions']))
- {
- echo '
- <tr bgcolor="#b6dbff"><td>', $txt['ban_triggers'], '</td></tr>
- <tr><td>
- <input type="checkbox" name="ban_suggestions[]" value="main_ip" class="input_check" /> <strong>', $txt['wireless_ban_ip'], ':</strong><br />
- <input type="text" name="main_ip" value="', $context['ban_suggestions']['main_ip'], '" size="20" class="input_text" />
- </td></tr>';
- if (empty($modSettings['disableHostnameLookup']))
- echo '
- <tr><td>
- <input type="checkbox" name="ban_suggestions[]" value="hostname" class="input_check" /> <strong>', $txt['wireless_ban_hostname'], ':</strong><br />
- <input type="text" name="hostname" value="', $context['ban_suggestions']['hostname'], '" size="20" class="input_text" />
- </td></tr>';
- echo '
- <tr><td>
- <input type="checkbox" name="ban_suggestions[]" value="email" class="input_check" /> <strong>', $txt['wireless_ban_email'], ':</strong><br />
- <input type="text" name="email" value="', $context['ban_suggestions']['email'], '" size="20" class="input_text" />
- </td></tr>
- <tr><td>
- <input type="checkbox" name="ban_suggestions[]" value="user" class="input_check" /> <strong>', $txt['ban_on_username'], ':</strong><br />';
- if (empty($context['ban_suggestions']['member']['id']))
- echo '
- <input type="text" name="user" value="" size="20" class="input_text" />';
- else
- echo '
- ', $context['ban_suggestions']['member']['name'], '
- <input type="hidden" name="bannedUser" value="', $context['ban_suggestions']['member']['id'], '" />';
- echo '
- </td></tr>';
- }
- echo '
- <tr><td><input type="submit" name="', $context['ban']['is_new'] ? 'add_ban' : 'modify_ban', '" value="', $context['ban']['is_new'] ? $txt['ban_add'] : $txt['ban_modify'], '" class="button_submit" /></td></tr>
- <tr bgcolor="#b6dbff"><td>', $txt['wireless_additional_info'], '</td></tr>
- <tr><td><a href="', $scripturl, '?imode">', $txt['wireless_error_home'], '.</a></td></tr>';
- echo '
- </table>
- <input type="hidden" name="old_expire" value="', $context['ban']['expiration']['days'], '" />
- <input type="hidden" name="bg" value="', $context['ban']['id'], '" />
- <input type="hidden" name="', $context['session_var'], '" value="', $context['session_id'], '" />
- </form>';
- }
- function template_imode_below()
- {
- global $context, $options, $txt;
- echo '
- <br /><a href="', $context['linktree'][count($context['linktree']) - 1]['url'], (count($context['linktree']) > 1 ? ';' : '?'), 'nowap" rel="nofollow">', $txt['wireless_go_to_full_version'], '</a>
- </body>
- </html>';
- }
- // XHTMLMP (XHTML Mobile Profile) templates used for WAP 2.0 start here
- function template_wap2_above()
- {
- global $context, $settings, $options, $user_info;
- echo '<?xml version="1.0" encoding="', $context['character_set'], '"?', '>
- <!DOCTYPE html PUBLIC "-//WAPFORUM//DTD XHTML Mobile 1.0//EN" "http://www.wapforum.org/DTD/xhtml-mobile10.dtd">
- <html xmlns="http://www.w3.org/1999/xhtml"', $context['right_to_left'] ? ' dir="rtl"' : '', '>
- <head>
- <title>', $context['page_title'], '</title>';
- // Present a canonical url for search engines to prevent duplicate content in their indices.
- if ($user_info['is_guest'] && !empty($context['canonical_url']))
- echo '
- <link rel="canonical" href="', $context['canonical_url'], '" />';
- echo '
- <link rel="stylesheet" href="', $settings['default_theme_url'], '/css/wireless.css" type="text/css" />
- </head>
- <body>';
- }
- function template_wap2_boardindex()
- {
- global $context, $options, $scripturl, $txt;
- echo '
- <p class="catbg">', $context['forum_name_html_safe'], '</p>';
- $count = 0;
- foreach ($context['categories'] as $category)
- {
- if (!empty($category['boards']) || $category['is_collapsed'])
- echo '
- <p class="titlebg">', $category['can_collapse'] ? '<a href="' . $scripturl . '?action=collapse;c=' . $category['id'] . ';sa=' . ($category['is_collapsed'] ? 'expand;' : 'collapse;') . $context['session_var'] . '=' . $context['session_id'] . ';wap2">' : '', $category['name'], $category['can_collapse'] ? '</a>' : '', '</p>';
- foreach ($category['boards'] as $board)
- {
- $count++;
- echo '
- <p class="windowbg">', $board['new'] ? '<span class="updated">' : '', $count < 10 ? '[' . $count . '' : '[-', $board['children_new'] && !$board['new'] ? '<span class="updated">' : '', '] ', $board['new'] || $board['children_new'] ? '</span>' : '', '<a href="', $scripturl, '?board=', $board['id'], '.0;wap2"', $count < 10 ? ' accesskey="' . $count . '"' : '', '>', $board['name'], '</a></p>';
- }
- }
- echo '
- <p class="titlebg">', $txt['wireless_options'], '</p>';
- if ($context['user']['is_guest'])
- echo '
- <p class="windowbg"><a href="', $scripturl, '?action=login;wap2">', $txt['wireless_options_login'], '</a></p>';
- else
- {
- if ($context['allow_pm'])
- echo '
- <p class="windowbg"><a href="', $scripturl, '?action=pm;wap2">', empty($context['user']['unread_messages']) ? $txt['wireless_pm_inbox'] : sprintf($txt['wireless_pm_inbox_new'], $context['user']['unread_messages']), '</a></p>';
- echo '
- <p class="windowbg"><a href="', $scripturl, '?action=unread;wap2">', $txt['wireless_recent_unread_posts'], '</a></p>
- <p class="windowbg"><a href="', $scripturl, '?action=unreadreplies;wap2">', $txt['wireless_recent_unread_replies'], '</a></p>
- <p class="windowbg"><a href="', $scripturl, '?action=logout;', $context['session_var'], '=', $context['session_id'], ';wap2">', $txt['wireless_options_logout'], '</a></p>';
- }
- }
- function template_wap2_messageindex()
- {
- global $context, $options, $scripturl, $txt;
- echo '
- <p class="catbg">', $context['name'], '</p>';
- if (!empty($context['boards']))
- {
- echo '
- <p class="titlebg">', $txt['sub_boards'], '</p>';
- foreach ($context['boards'] as $board)
- echo '
- <p class="windowbg">', $board['new'] ? '<span class="updated">[-] </span>' : ($board['children_new'] ? '[-<span class="updated">] </span>' : '[-] '), '<a href="', $scripturl, '?board=', $board['id'], '.0;wap2">', $board['name'], '</a></p>';
- }
- $count = 0;
- if (!empty($context['topics']))
- {
- echo '
- <p class="titlebg">', $txt['topics'], '</p>
- <p class="windowbg">', !empty($context['links']['prev']) ? '<a href="' . $context['links']['first'] . ';wap2"><<</a> <a href="' . $context['links']['prev'] . ';wap2"><</a> ' : '', '(', $context['page_info']['current_page'], '/', $context['page_info']['num_pages'], ')', !empty($context['links']['next']) ? ' <a href="' . $context['links']['next'] . ';wap2">></a> <a href="' . $context['links']['last'] . ';wap2">>></a> ' : '', '</p>';
- foreach ($context['topics'] as $topic)
- {
- $count++;
- echo '
- <p class="windowbg">', $count < 10 ? '[' . $count . '] ' : '', '<a href="', $scripturl, '?topic=', $topic['id'], '.0;wap2"', $count < 10 ? ' accesskey="' . $count . '"' : '', '>', $topic['first_post']['subject'], '</a>', (!$topic['approved'] ? ' <em>(' . $txt['awaiting_approval'] . ')</em>' : ''), $topic['new'] && $context['user']['is_logged'] ? ' [<a href="' . $scripturl . '?topic=' . $topic['id'] . '.msg' . $topic['new_from'] . ';wap2#new" class="new">' . $txt['new'] . '</a>]' : '', '</p>';
- }
- }
- echo '
- <p class="titlebg">', $txt['wireless_navigation'], '</p>
- <p class="windowbg">[0] <a href="', $context['links']['up'], ($context['links']['up'] == $scripturl . '?' ? '' : ';'), 'wap2" accesskey="0">', $txt['wireless_navigation_up'], '</a></p>', !empty($context['links']['next']) ? '
- <p class="windowbg">[#] <a href="' . $context['links']['next'] . ';wap2" accesskey="#">' . $txt['wireless_navigation_next'] . '</a></p>' : '', !empty($context['links']['prev']) ? '
- <p class="windowbg">[*] <a href="' . $context['links']['prev'] . ';wap2" accesskey="*">' . $txt['wireless_navigation_prev'] . '</a></p>' : '', $context['can_post_new'] ? '
- <p class="windowbg"><a href="' . $scripturl . '?action=post;board=' . $context['current_board'] . '.0;wap2">' . $txt['start_new_topic'] . '</a></p>' : '';
- }
- function template_wap2_display()
- {
- global $context, $options, $scripturl, $txt;
- echo '
- <p class="titlebg">' . $context['linktree'][1]['name'] . ' > ' . $context['linktree'][count($context['linktree']) - 2]['name'] . '</p>
- <p class="catbg">', $context['subject'], '</p>
- <p class="windowbg">', !empty($context['links']['prev']) ? '<a href="' . $context['links']['first'] . ';wap2"><<</a> <a href="' . $context['links']['prev'] . ';wap2"><</a> ' : '', '(', $context['page_info']['current_page'], '/', $context['page_info']['num_pages'], ')', !empty($context['links']['next']) ? ' <a href="' . $context['links']['next'] . ';wap2">></a> <a href="' . $context['links']['last'] . ';wap2">>></a> ' : '', '</p>';
- $alternate = true;
- while ($message = $context['get_message']())
- {
- // This is a special modification to the post so it will work on phones:
- $message['body'] = preg_replace('~<div class="(?:quote|code)header">(.+?)</div>~', '<br />--- $1 ---', $message['body']);
- $message['body'] = strip_tags(str_replace(
- array(
- '<blockquote>',
- '</blockquote>',
- '<code>',
- '</code>',
- '<li>',
- $txt['code_select'],
- ),
- array(
- '<br />',
- '<br />--- ' . $txt['wireless_end_quote'] . ' ---<br />',
- '<br />',
- '<br />--- ' . $txt['wireless_end_code'] . ' ---<br />',
- '<br />* ',
- '',
- ), $message['body']), '<br>');
- echo $message['first_new'] ? '
- <a id="new"></a>' : '', '
- <p class="windowbg', $alternate ? '' : '2', '">
- ', $context['wireless_moderate'] && $message['member']['id'] ? '<a href="' . $scripturl . '?action=profile;u=' . $message['member']['id'] . ';wap2">' . $message['member']['name'] . '</a>' : '<strong>' . $message['member']['name'] . '</strong>', ':
- ', ((empty($context['wireless_more']) && $message['can_modify']) || !empty($context['wireless_moderate']) ? '[<a href="' . $scripturl . '?action=post;msg=' . $message['id'] . ';topic=' . $context['current_topic'] . '.' . $context['start'] . ';wap2">' . $txt['wireless_display_edit'] . '</a>]' : ''), (!$message['approved'] ? ' <em>(' . $txt['awaiting_approval'] . ')</em>' : ''), '<br />
- ', $message['body'], '
- </p>';
- $alternate = !$alternate;
- }
- echo '
- <p class="titlebg">', $txt['wireless_navigation'], '</p>
- <p class="windowbg">[0] <a href="', $context['links']['up'], ';wap2" accesskey="0">', $txt['wireless_navigation_index'], '</a></p>', $context['user']['is_logged'] ? '
- <p class="windowbg">[1] <a href="' . $scripturl . '?action=markasread;sa=topic;t=' . $context['mark_unread_time']. ';topic=' . $context['current_topic'] . '.' . $context['start'] . ';' . $context['session_var'] . '=' . $context['session_id'] . ';wap2" accesskey="1">' . $txt['mark_unread'] . '</a></p>' : '', !empty($context['links']['next']) ? '
- <p class="windowbg">[#] <a href="' . $context['links']['next'] . ';wap2' . $context['wireless_moderate'] . '" accesskey="#">' . $txt['wireless_navigation_next'] . '</a></p>' : '', !empty($context['links']['prev']) ? '
- <p class="windowbg">[*] <a href="' . $context['links']['prev'] . ';wap2' . $context['wireless_moderate'] . '" accesskey="*">' . $txt['wireless_navigation_prev'] . '</a></p>' : '', $context['can_reply'] ? '
- <p class="windowbg"><a href="' . $scripturl . '?action=post;topic=' . $context['current_topic'] . '.' . $context['start'] . ';wap2">' . $txt['reply'] . '</a></p>' : '';
- if (!empty($context['wireless_more']) && empty($context['wireless_moderate']))
- echo '
- <p class="windowbg"><a href="', $scripturl, '?topic=', $context['current_topic'], '.', $context['start'], ';moderate;wap2">', $txt['wireless_display_moderate'], '</a></p>';
- elseif (!empty($context['wireless_moderate']))
- {
- if ($context['can_sticky'])
- echo '
- <p class="windowbg"><a href="', $scripturl, '?action=sticky;topic=', $context['current_topic'], '.', $context['start'], ';', $context['session_var'], '=', $context['session_id'], ';wap2">', $txt['wireless_display_' . ($context['is_sticky'] ? 'unsticky' : 'sticky')], '</a></p>';
- if ($context['can_lock'])
- echo '
- <p class="windowbg"><a href="', $scripturl, '?action=lock;topic=', $context['current_topic'], '.', $context['start'], ';', $context['session_var'], '=', $context['session_id'], ';wap2">', $txt['wireless_display_' . ($context['is_locked'] ? 'unlock' : 'lock')], '</a></p>';
- }
- }
- function template_wap2_login()
- {
- global $context, $modSettings, $scripturl, $txt;
- echo '
- <form action="', $scripturl, '?action=login2;wap2" method="post">
- <p class="catbg">', $txt['login'], '</p>';
- if (isset($context['login_errors']))
- foreach ($context['login_errors'] as $error)
- echo '
- <p class="windowbg" style="color: #ff0000;"><strong>', $error, '</strong></p>';
- echo '
- <p class="windowbg">', $txt['username'], ':</p>
- <p class="windowbg"><input type="text" name="user" size="10" class="input_text" /></p>
- <p class="windowbg">', $txt['password'], ':</p>
- <p class="windowbg"><input type="password" name="passwrd" size="10" class="input_password" /></p>';
- // Open ID?
- if (!empty($modSettings['enableOpenID']))
- echo '
- <p class="windowbg"><strong>—', $txt['or'], '—</strong></p>
- <p class="windowbg">', $txt['openid'], ':</p>
- <p class="windowbg"><input type="text" name="openid_identifier" class="input_text openid_login" size="17" /></p>';
- echo '
- <p class="windowbg"><input type="submit" value="', $txt['login'], '" class="button_submit" /><input type="hidden" name="cookieneverexp" value="1" /></p>
- <p class="catbg">', $txt['wireless_navigation'], '</p>
- <p class="windowbg">[0] <a href="', $scripturl, '?wap2" accesskey="0">', $txt['wireless_navigation_up'], '</a></p>
- </form>';
- }
- function template_wap2_post()
- {
- global $context, $options, $scripturl, $txt, $modSettings;
- echo '
- <form action="', $scripturl, '?action=', $context['destination'], ';board=', $context['current_board'], '.0;wap2" method="post">
- <p class="titlebg">', $context['page_title'], '</p>';
- if (!$context['becomes_approved'])
- echo '
- <p class="windowbg">
- ' . $txt['wait_for_approval'] . '
- <input type="hidden" name="not_approved" value="1" />
- </p>';
- if ($context['locked'])
- echo '
- <p class="windowbg">
- ' . $txt['topic_locked_no_reply'] . '
- </p>';
- if (isset($context['name']) && isset($context['email']))
- {
- echo '
- <p class="windowbg"' . (isset($context['post_error']['long_name']) || isset($context['post_error']['no_name']) ? ' style="color: #ff0000"' : '') . '>
- ' . $txt['username'] . ': <input type="text" name="guestname" value="' . $context['name'] . '" class="input_text" />
- </p>';
- if (empty($modSettings['guest_post_no_email']))
- echo '
- <p class="windowbg"' . (isset($context['post_error']['no_email']) || isset($context['post_error']['bad_email']) ? ' style="color: #ff0000"' : '') . '>
- ' . $txt['email'] . ': <input type="text" name="email" value="' . $context['email'] . '" class="input_text" />
- </p>';
- }
- if ($context['require_verification'])
- echo '
- <p class="windowbg"', !empty($context['post_error']['need_qr_verification']) ? ' style="color: #ff0000"' : '', '>
- ' . $txt['verification'] . ': ', template_control_verification($context['visual_verification_id'], 'all'), '
- </p>';
- echo '
- <p class="windowbg"', isset($context['post_error']['no_subject']) ? ' style="color: #ff0000"' : '', '>
- ', $txt['subject'], ': <input type="text" name="subject"', $context['subject'] == '' ? '' : ' value="' . $context['subject'] . '"', ' maxlength="80" class="input_text" />
- </p>
- <p class="windowbg"', isset($context['post_error']['no_message']) || isset($context['post_error']['long_message']) ? ' style="color: #ff0000;"' : '', '>
- ', $txt['message'], ': <br />
- <textarea name="message" id="message" rows="5" cols="20">', $context['message'], '</textarea>
- </p>
- <p class="windowbg">
- <input type="submit" name="post" value="', $context['submit_label'], '" class="button_submit" />
- <input type="hidden" name="icon" value="wireless" />
- <input type="hidden" name="goback" value="', $context['back_to_topic'] || !empty($options['return_to_post']) ? '1' : '0', '" />
- <input type="hidden" name="seqnum" value="', $context['form_sequence_number'], '" />
- <input type="hidden" name="', $context['session_var'], '" value="', $context['session_id'], '" />', isset($context['current_topic']) ? '
- <input type="hidden" name="topic" value="' . $context['current_topic'] . '" />' : '', '
- <input type="hidden" name="notify" value="', $context['notify'] || !empty($options['auto_notify']) ? '1' : '0', '" />
- </p>
- <p class="windowbg">[0] ', !empty($context['current_topic']) ? '<a href="' . $scripturl . '?topic=' . $context['current_topic'] . '.new;wap2">' . $txt['wireless_navigation_topic'] . '</a>' : '<a href="' . $scripturl . '?board=' . $context['current_board'] . '.0;wap2" accesskey="0">' . $txt['wireless_navigation_index'] . '</a>', '</p>
- </form>';
- }
- function template_wap2_pm()
- {
- global $context, $options, $scripturl, $txt, $user_info;
- if ($_REQUEST['action'] == 'findmember')
- {
- echo '
- <form action="', $scripturl, '?action=findmember;', $context['session_var'], '=', $context['session_id'], ';wap2" method="post">
- <p class="catbg">', $txt['wireless_pm_search_member'], '</p>
- <p class="titlebg">', $txt['find_members'], '</p>
- <p class="windowbg">
- <strong>', $txt['wireless_pm_search_name'], ':</strong>
- <input type="text" name="search" value="', isset($context['last_search']) ? $context['last_search'] : '', '" class="input_text" />', empty($_REQUEST['u']) ? '' : '
- <input type="hidden" name="u" value="' . $_REQUEST['u'] . '" />', '
- </p>
- <p class="windowbg"><input type="submit" value="', $txt['search'], '" class="button_submit" /></p>
- </form>';
- if (!empty($context['last_search']))
- {
- echo '
- <p class="titlebg">', $txt['find_results'], '</p>';
- if (empty($context['results']))
- echo '
- <p class="windowbg">[-] ', $txt['find_no_results'], '</p>';
- else
- {
- echo '
- <p class="windowbg">', empty($context['links']['prev']) ? '' : '<a href="' . $context['links']['first'] . ';wap2"><<</a> <a href="' . $context['links']['prev'] . ';wap2"><</a> ', '(', $context['page_info']['current_page'], '/', $context['page_info']['num_pages'], ')', empty($context['links']['next']) ? '' : ' <a href="' . $context['links']['next'] . ';wap2">></a> <a href="' . $context['links']['last'] . ';wap2">>></a> ', '</p>';
- $count = 0;
- foreach ($context['results'] as $result)
- {
- $count++;
- echo '
- <p class="windowbg">
- [', $count < 10 ? $count : '-', '] <a href="', $scripturl, '?action=pm;sa=send;u=', empty($_REQUEST['u']) ? $result['id'] : $_REQUEST['u'] . ',' . $result['id'], ';wap2"', $count < 10 ? ' accesskey="' . $count . '"' : '', '>', $result['name'], '</a>
- </p>';
- }
- }
- }
- echo '
- <p class="titlebg">', $txt['wireless_navigation'], '</p>
- <p class="windowbg">[0] <a href="', $context['links']['up'], ';wap2" accesskey="0">', $txt['wireless_navigation_up'], '</a></p>';
- if (!empty($context['results']))
- echo empty($context['links']['next']) ? '' : '
- <p class="windowbg">[#] <a href="' . $context['links']['next'] . ';wap2" accesskey="#">' . $txt['wireless_navigation_next'] . '</a></p>', empty($context['links']['prev']) ? '' : '
- <p class="windowbg">[*] <a href="' . $context['links']['prev'] . ';wap2" accesskey="*">' . $txt['wireless_navigation_prev'] . '</a></p>';
- }
- elseif (!empty($_GET['sa']))
- {
- if ($_GET['sa'] == 'addbuddy')
- {
- echo '
- <p class="catbg">', $txt['wireless_pm_add_buddy'], '</p>
- <p class="titlebg">', $txt['wireless_pm_select_buddy'], '</p>';
- $count = 0;
- foreach ($context['buddies'] as $buddy)
- {
- $count++;
- if ($buddy['selected'])
- echo '
- <p class="windowbg">[-] <span style="color: gray">', $buddy['name'], '</span></p>';
- else
- echo '
- <p class="windowbg">
- [', $count < 10 ? $count : '-', '] <a href="', $buddy['add_href'], ';wap2"', $count < 10 ? ' accesskey="' . $count . '"' : '', '>', $buddy['name'], '</a>
- </p>';
- }
- echo '
- <p class="titlebg">', $txt['wireless_navigation'], '</p>
- <p class="windowbg">[0] <a href="', $context['pm_href'], ';wap2" accesskey="0">', $txt['wireless_navigation_up'], '</a></p>';
- }
- if ($_GET['sa'] == 'send' || $_GET['sa'] == 'send2')
- {
- echo '
- <form action="', $scripturl, '?action=pm;sa=send2;wap2" method="post">
- <p class="catbg">', $txt['new_message'], '</p>', empty($context['post_error']['messages']) ? '' : '
- <p class="windowbg error">' . implode('<br />', $context['post_error']['messages']) . '</p>', '
- <p class="windowbg">
- <strong>', $txt['pm_to'], ':</strong> ';
- if (empty($context['recipients']['to']))
- echo $txt['wireless_pm_no_recipients'];
- else
- {
- $to_names = array();
- $ids = array();
- foreach ($context['recipients']['to'] as $to)
- {
- $ids[] = $to['id'];
- $to_names[] = $to['name'];
- }
- echo implode(', ', $to_names);
- $ids = implode(',', $ids);
- }
- echo '
- ', empty($ids) ? '' : '<input type="hidden" name="u" value="' . $ids . '" />', '<br />
- <a href="', $scripturl, '?action=findmember', empty($ids) ? '' : ';u=' . $ids, ';', $context['session_var'], '=', $context['session_id'], ';wap2">', $txt['wireless_pm_search_member'], '</a>', empty($user_info['buddies']) ? '' : '<br />
- <a href="' . $scripturl . '?action=pm;sa=addbuddy' . (empty($ids) ? '' : ';u=' . $ids) . ';wap2">' . $txt['wireless_pm_add_buddy'] . '</a>', '
- </p>
- <p class="windowbg">
- <strong>', $txt['subject'], ':</strong> <input type="text" name="subject" value="', $context['subject'], '" />
- </p>
- <p class="windowbg">
- <strong>', $txt['message'], ':</strong><br />
- <textarea name="message" id="message" rows="5" cols="20">', $context['message'], '</textarea>
- </p>
- <p class="windowbg">
- <input type="submit" value="', $txt['send_message'], '" class="button_submit" />
- <input type="hidden" name="', $context['session_var'], '" value="', $context['session_id'], '" />
- <input type="hidden" name="seqnum" value="', $context['form_sequence_number'], '" />
- <input type="hidden" name="replied_to" value="', !empty($context['quoted_message']['id']) ? $context['quoted_message']['id'] : 0, '" />
- <input type="hidden" name="pm_head" value="', !empty($context['quoted_message']['pm_head']) ? $context['quoted_message']['pm_head'] : 0, '" />
- <input type="hidden" name="f" value="', isset($context['folder']) ? $context['folder'] : '', '" />
- <input type="hidden" name="l" value="', isset($context['current_label_id']) ? $context['current_label_id'] : -1, '" />
- </p>';
- if ($context['reply'])
- echo '
- <p class="titlebg">', $txt['wireless_pm_reply_to'], '</p>
- <p class="windowbg"><strong>', $context['quoted_message']['subject'], '</strong></p>
- <p class="windowbg">', $context['quoted_message']['body'], '</p>';
- echo '
- <p class="titlebg">', $txt['wireless_navigation'], '</p>
- <p class="windowbg">[0] <a href="', $scripturl, '?action=pm;wap2" accesskey="0">', $txt['wireless_navigation_up'], '</a></p>
- </form>';
- }
- }
- elseif (empty($_GET['pmsg']))
- {
- echo '
- <p class="catbg">', $context['current_label_id'] == -1 ? $txt['wireless_pm_inbox'] : $txt['pm_current_label'] . ': ' . $context['current_label'], '</p>
- <p class="windowbg">', empty($context['links']['prev']) ? '' : '<a href="' . $context['links']['first'] . ';wap2"><<</a> <a href="' . $context['links']['prev'] . ';wap2"><</a> ', '(', $context['page_info']['current_page'], '/', $context['page_info']['num_pages'], ')', empty($context['links']['next']) ? '' : ' <a href="' . $context['links']['next'] . ';wap2">></a> <a href="' . $context['links']['last'] . ';wap2">>></a> ', '</p>';
- $count = 0;
- while ($message = $context['get_pmessage']())
- {
- $count++;
- echo '
- <p class="windowbg">
- [', $count < 10 ? $count : '-', '] <a href="', $scripturl, '?action=pm;start=', $context['start'], ';pmsg=', $message['id'], ';l=', $context['current_label_id'], ';wap2"', $count < 10 ? ' accesskey="' . $count . '"' : '', '>', $message['subject'], ' <em>', $txt['wireless_pm_by'], '</em> ', $message['member']['name'], '</a>', $message['is_unread'] ? ' [' . $txt['new'] . ']' : '', '
- </p>';
- }
- if ($context['currently_using_labels'])
- {
- $labels = array();
- ksort($context['labels']);
- foreach ($context['labels'] as $label)
- $labels[] = '<a href="' . $scripturl . '?action=pm;l=' . $label['id'] . ';wap2">' . $label['name'] . '</a>' . (!empty($label['unread_messages']) ? ' (' . $label['unread_messages'] . ')' : '');
- echo '
- <p class="catbg">
- ', $txt['pm_labels'], '
- </p>
- <p class="windowbg">
- ', implode(', ', $labels), '
- </p>';
- }
- echo '
- <p class="titlebg">', $txt['wireless_navigation'], '</p>
- <p class="windowbg">[0] <a href="', $scripturl, '?wap2" accesskey="0">', $txt['wireless_navigation_up'], '</a></p>', empty($context['links']['next']) ? '' : '
- <p class="windowbg">[#] <a href="' . $context['links']['next'] . ';wap2" accesskey="#">' . $txt['wireless_navigation_next'] . '</a></p>', empty($context['links']['prev']) ? '' : '
- <p class="windowbg">[*] <a href="' . $context['links']['prev'] . ';wap2" accesskey="*">' . $txt['wireless_navigation_prev'] . '</a></p>', $context['can_send_pm'] ? '
- <p class="windowbg"><a href="' . $scripturl . '?action=pm;sa=send;wap2">' . $txt['new_message'] . '</a></p>' : '';
- }
- else
- {
- $message = $context['get_pmessage']();
- $message['body'] = preg_replace('~<div class="(?:quote|code)header">(.+?)</div>~', '<br />--- $1 ---', $message['body']);
- $message['body'] = strip_tags(str_replace(
- array(
- '<blockquote>',
- '</blockquote>',
- '<code>',
- '</code>',
- '<li>',
- $txt['code_select'],
- ),
- array(
- '<br />',
- '<br />--- ' . $txt['wireless_end_quote'] . ' ---<br />',
- '<br />',
- '<br />--- ' . $txt['wireless_end_code'] . ' ---<br />',
- '<br />* ',
- '',
- ), $message['body']), '<br>');
- echo '
- <p class="catbg">', $message['subject'], '</p>
- <p class="titlebg">
- <strong>', $txt['wireless_pm_by'], ':</strong> ', $message['member']['name'], '<br />
- <strong>', $txt['on'], ':</strong> ', $message['time'], '
- </p>
- <p class="windowbg">
- ', $message['body'], '
- </p>
- <p class="titlebg">', $txt['wireless_navigation'], '</p>
- <p class="windowbg">[0] <a href="', $scripturl, '?action=pm;start=', $context['start'], ';l=', $context['current_label_id'], ';wap2" accesskey="0">', $txt['wireless_navigation_up'], '</a></p>';
- if ($context['can_send_pm'])
- echo '
- <p class="windowbg"><a href="', $scripturl, '?action=pm;sa=send;pmsg=', $message['id'], ';u=', $message['member']['id'], ';reply;wap2">', $txt['wireless_pm_reply'], '</a></p>';
- if ($context['can_send_pm'] && $message['number_recipients'] > 1)
- echo '
- <p class="windowbg"><a href="', $scripturl, '?action=pm;sa=send;pmsg=', $message['id'], ';u=all;reply;wap2">', $txt['wireless_pm_reply_all'], '</a></p>';
- }
- }
- function template_wap2_recent()
- {
- global $context, $options, $scripturl, $txt;
- echo '
- <p class="catbg">', $_REQUEST['action'] == 'unread' ? $txt['wireless_recent_unread_posts'] : $txt['wireless_recent_unread_replies'], '</p>';
- $count = 0;
- if (empty($context['topics']))
- echo '
- <p class="windowbg">', $txt['old_posts'], '</p>';
- else
- {
- echo '
- <p class="windowbg">', !empty($context['links']['prev']) ? '<a href="' . $context['links']['first'] . ';wap2"><<</a> <a href="' . $context['links']['prev'] . ';wap2"><</a> ' : '', '(', $context['page_info']['current_page'], '/', $context['page_info']['num_pages'], ')', !empty($context['links']['next']) ? ' <a href="' . $context['links']['next'] . ';wap2">></a> <a href="' . $context['links']['last'] . ';wap2">>></a> ' : '', '</p>';
- foreach ($context['topics'] as $topic)
- {
- $count++;
- echo '
- <p class="windowbg">', ($count < 10 ? '[' . $count . '] ' : ''), '<a href="', $scripturl, '?topic=', $topic['id'], '.msg', $topic['new_from'], ';topicseen;wap2#new"', ($count < 10 ? ' accesskey="' . $count . '"' : ''), '>', $topic['first_post']['subject'], '</a></p>';
- }
- }
- echo '
- <p class="titlebg">', $txt['wireless_navigation'], '</p>
- <p class="windowbg">[0] <a href="', $context['links']['up'], '?wap2" accesskey="0">', $txt['wireless_navigation_up'], '</a></p>', !empty($context['links']['next']) ? '
- <p class="windowbg">[#] <a href="' . $context['links']['next'] . ';wap2" accesskey="#">' . $txt['wireless_navigation_next'] . '</a></p>' : '', !empty($context['links']['prev']) ? '
- <p class="windowbg">[*] <a href="' . $context['links']['prev'] . ';wap2" accesskey="*">' . $txt['wireless_navigation_prev'] . '</a></p>' : '';
- }
- function template_wap2_error()
- {
- global $context, $options, $txt, $scripturl;
- echo '
- <p class="catbg">', $context['error_title'], '</p>
- <p class="windowbg">', $context['error_message'], '</p>
- <p class="windowbg">[0] <a href="', $scripturl, '?wap2" accesskey="0">', $txt['wireless_error_home'], '</a></p>';
- }
- function template_wap2_profile()
- {
- global $context, $options, $scripturl, $board, $txt;
- echo '
- <p class="catbg">', $txt['summary'], ' - ', $context['member']['name'], '</p>
- <p class="windowbg"><strong>', $txt['name'], ':</strong> ', $context['member']['name'], '</p>
- <p class="windowbg"><strong>', $txt['position'], ': </strong>', (!empty($context['member']['group']) ? $context['member']['group'] : $context['member']['post_group']), '</p>
- <p class="windowbg"><strong>', $txt['lastLoggedIn'], ':</strong> ', $context['member']['last_login'], '</p>';
- if (!empty($context['member']['bans']))
- {
- echo '
- <p class="titlebg"><strong>', $txt['user_banned_by_following'], ':</strong></p>';
- foreach ($context['member']['bans'] as $ban)
- echo '
- <p class="windowbg">', $ban['explanation'], '</p>';
- }
- echo '
- <p class="titlebg">', $txt['additional_info'], '</p>';
- if (!$context['user']['is_owner'] && $context['can_send_pm'])
- echo '
- <p class="windowbg"><a href="', $scripturl, '?action=pm;sa=send;u=', $context['id_member'], ';wap2">', $txt['wireless_profile_pm'], '.</a></p>';
- if (!$context['user']['is_owner'] && !empty($context['can_edit_ban']))
- echo '
- <p class="windowbg"><a href="', $scripturl, '?action=admin;area=ban;sa=add;u=', $context['id_member'], ';wap2">', $txt['profileBanUser'], '.</a></p>';
- echo '
- <p class="windowbg"><a href="', $scripturl, '?wap2">', $txt['wireless_error_home'], '.</a></p>';
- }
- function template_wap2_ban_edit()
- {
- global $context, $options, $scripturl, $board, $txt, $modSettings;
- echo '
- <form action="', $scripturl, '?action=admin;area=ban;sa=add;wap2" method="post">
- <p class="catbg">', $context['ban']['is_new'] ? $txt['ban_add_new'] : $txt['ban_edit'] . ' \'' . $context['ban']['name'] . '\'', '</p>
- <p class="windowbg">
- <strong>', $txt['ban_name'], ': </strong>
- <input type="text" name="ban_name" value="', $context['ban']['name'], '" size="20" class="input_text" />
- </p>
- <p class="windowbg">
- <strong>', $txt['ban_expiration'], ': </strong><br />
- <input type="radio" name="expiration" value="never" ', $context['ban']['expiration']['status'] == 'never' ? ' checked="checked"' : '', ' class="input_radio" /> ', $txt['never'], '<br />
- <input type="radio" name="expiration" value="one_day" ', $context['ban']['expiration']['status'] == 'one_day' ? ' checked="checked"' : '', ' class="input_radio" /> ', $txt['ban_will_expire_within'], ' <input type="text" name="expire_date" size="3" value="', $context['ban']['expiration']['days'], '" /> ', $txt['ban_days'], '<br />
- <input type="radio" name="expiration" value="expired" ', $context['ban']['expiration']['status'] == 'expired' ? ' checked="checked"' : '', ' class="input_radio" /> ', $txt['ban_expired'], '<br />
- </p>
- <p class="windowbg">
- <strong>', $txt['ban_reason'], ': </strong>
- <input type="text" name="reason" value="', $context['ban']['reason'], '" size="20" class="input_text" />
- </p>
- <p class="windowbg">
- <strong>', $txt['ban_notes'], ': </strong><br />
- <textarea name="notes" cols="20" rows="3">', $context['ban']['notes'], '</textarea>
- </p>
- <p class="windowbg">
- <strong>', $txt['ban_restriction'], ': </strong><br />
- <input type="checkbox" name="full_ban" value="1"', $context['ban']['cannot']['access'] ? ' checked="checked"' : '', ' class="input_check" /> ', $txt['ban_full_ban'], '<br />
- <input type="checkbox" name="cannot_post" value="1"', $context['ban']['cannot']['post'] ? ' checked="checked"' : '', ' class="input_check" /> ', $txt['ban_cannot_post'], '<br />
- <input type="checkbox" name="cannot_register" value="1"', $context['ban']['cannot']['register'] ? ' checked="checked"' : '', ' class="input_check" /> ', $txt['ban_cannot_register'], '<br />
- <input type="checkbox" name="cannot_login" value="1"', $context['ban']['cannot']['login'] ? ' checked="checked"' : '', ' class="input_check" /> ', $txt['ban_cannot_login'], '
- </p>';
- if (!empty($context['ban_suggestions']))
- {
- echo '
- <p class="titlebg">', $txt['ban_triggers'], '</p>
- <p class="windowbg">
- <input type="checkbox" name="ban_suggestions[]" value="main_ip" class="input_check" /> <strong>', $txt['wireless_ban_ip'], ':</strong><br />
- <input type="text" name="main_ip" value="', $context['ban_suggestions']['main_ip'], '" size="20" class="input_text" />
- </p>';
- if (empty($modSettings['disableHostnameLookup']))
- echo '
- <p class="windowbg">
- <input type="checkbox" name="ban_suggestions[]" value="hostname" class="input_check" /> <strong>', $txt['wireless_ban_hostname'], ':</strong><br />
- <input type="text" name="hostname" value="', $context['ban_suggestions']['hostname'], '" size="20" class="input_text" />
- <p>';
- echo '
- <p class="windowbg">
- <input type="checkbox" name="ban_suggestions[]" value="email" class="input_check" /> <strong>', $txt['wireless_ban_email'], ':</strong><br />
- <input type="text" name="email" value="', $context['ban_suggestions']['email'], '" size="20" class="input_text" />
- </p>
- <p class="windowbg">
- <input type="checkbox" name="ban_suggestions[]" value="user" class="input_check" /> <strong>', $txt['ban_on_username'], ':</strong><br />';
- if (empty($context['ban_suggestions']['member']['id']))
- echo '
- <input type="text" name="user" value="" size="20" class="input_text" />';
- else
- echo '
- ', $context['ban_suggestions']['member']['name'], '
- <input type="hidden" name="bannedUser" value="', $context['ban_suggestions']['member']['id'], '" />';
- echo '
- </p>';
- }
- echo '
- <p class="windowbg"><input type="submit" name="', $context['ban']['is_new'] ? 'add_ban' : 'modify_ban', '" value="', $context['ban']['is_new'] ? $txt['ban_add'] : $txt['ban_modify'], '" class="button_submit" /></p>
- <p class="titlebg">', $txt['wireless_additional_info'], '</p>
- <p class="windowbg"><a href="', $scripturl, '?wap2">', $txt['wireless_error_home'], '.</a></p>';
- echo '
- <input type="hidden" name="old_expire" value="', $context['ban']['expiration']['days'], '" />
- <input type="hidden" name="bg" value="', $context['ban']['id'], '" />
- <input type="hidden" name="', $context['session_var'], '" value="', $context['session_id'], '" />
- </form>';
- }
- function template_wap2_below()
- {
- global $context, $txt;
- echo '
- <a href="', $context['linktree'][count($context['linktree']) - 1]['url'], (count($context['linktree']) > 1 ? ';' : '?'), 'nowap" rel="nofollow">', $txt['wireless_go_to_full_version'], '</a>
- </body>
- </html>';
- }
- ?>
|