1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522 |
- <?php
- /**
- * Simple Machines Forum (SMF)
- *
- * @package SMF
- * @author Simple Machines http://www.simplemachines.org
- * @copyright 2014 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, $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, $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, $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, $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, $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, $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, $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, $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>';
- if (!$context['user']['is_guest'])
- 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>';
- $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=logout;', $context['session_var'], '=', $context['session_id'], ';imode">', $txt['wireless_options_logout'], '</a></td></tr>';
- }
- echo '
- </table>';
- }
- function template_imode_messageindex()
- {
- global $context, $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, $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, $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, $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, $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, $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, $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, $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, $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, $user_info, $modSettings;
- 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', $modSettings['browser_cache'] ,'" />
- </head>
- <body>';
- }
- function template_wap2_boardindex()
- {
- global $context, $scripturl, $txt;
- echo '
- <p class="catbg">', $context['forum_name_html_safe'], '</p>';
- if (!$context['user']['is_guest'])
- 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>';
- $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=logout;', $context['session_var'], '=', $context['session_id'], ';wap2">', $txt['wireless_options_logout'], '</a></p>';
- }
- }
- function template_wap2_messageindex()
- {
- global $context, $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, $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, $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, $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, $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, $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, $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>';
- }
- ?>
|