PageRenderTime 54ms CodeModel.GetById 23ms RepoModel.GetById 1ms app.codeStats 0ms

/Themes/default/Wireless.template.php

https://github.com/smf-portal/SMF2.1
PHP | 1521 lines | 1327 code | 161 blank | 33 comment | 141 complexity | 97b1ba64695f4af1efc4f6da61088e3f MD5 | raw file

Large files files are truncated, but you can click here to view the full file

  1. <?php
  2. /**
  3. * Simple Machines Forum (SMF)
  4. *
  5. * @package SMF
  6. * @author Simple Machines
  7. * @copyright 2012 Simple Machines
  8. * @license http://www.simplemachines.org/about/smf/license.php BSD
  9. *
  10. * @version 2.1 Alpha 1
  11. */
  12. // This is the header for WAP 1.1 output. You can view it with ?wap in the URL.
  13. function template_wap_above()
  14. {
  15. global $context, $settings, $options;
  16. // Show the xml declaration...
  17. echo '<?xml version="1.0"?', '>
  18. <!DOCTYPE wml PUBLIC "-//WAPFORUM//DTD WML 1.1//EN" "http://www.wapforum.org/DTD/wml_1.1.xml">
  19. <wml>
  20. <head>
  21. </head>';
  22. }
  23. // This is the board index (main page) in WAP 1.1.
  24. function template_wap_boardindex()
  25. {
  26. global $context, $settings, $options, $scripturl;
  27. // This is the "main" card...
  28. echo '
  29. <card id="main" title="', $context['page_title'], '">
  30. <p><strong>', $context['forum_name_html_safe'], '</strong><br /></p>';
  31. // Show an anchor for each category.
  32. foreach ($context['categories'] as $category)
  33. {
  34. // Skip it if it's empty.
  35. if (!empty($category['boards']))
  36. echo '
  37. <p><a href="#c', $category['id'], '">', $category['name'], '</a><br /></p>';
  38. }
  39. // Okay, that's it for the main card.
  40. echo '
  41. </card>';
  42. // Now fill out the deck of cards with the boards in each category.
  43. foreach ($context['categories'] as $category)
  44. {
  45. // Begin the card, and make the name available.
  46. echo '
  47. <card id="c', $category['id'], '" title="', strip_tags($category['name']), '">
  48. <p><strong>', strip_tags($category['name']), '</strong><br /></p>';
  49. // Now show a link for each board.
  50. foreach ($category['boards'] as $board)
  51. echo '
  52. <p><a href="', $scripturl, '?board=', $board['id'], '.0;wap">', $board['name'], '</a><br /></p>';
  53. echo '
  54. </card>';
  55. }
  56. }
  57. // This is the message index (list of topics in a board) for WAP 1.1.
  58. function template_wap_messageindex()
  59. {
  60. global $context, $settings, $options, $scripturl, $txt;
  61. echo '
  62. <card id="main" title="', $context['page_title'], '">
  63. <p><strong>', $context['name'], '</strong></p>';
  64. if (isset($context['boards']) && count($context['boards']) > 0)
  65. {
  66. foreach ($context['boards'] as $board)
  67. echo '
  68. <p>- <a href="', $scripturl, '?board=', $board['id'], '.0;wap">', $board['name'], '</a><br /></p>';
  69. echo '
  70. <p><br /></p>';
  71. }
  72. if (!empty($context['topics']))
  73. {
  74. echo '
  75. <p>', $txt['pages'], ': ', !empty($context['links']['prev']) ? '<a href="' . $context['links']['first'] . ';wap">&lt;&lt;</a> <a href="' . $context['links']['prev'] . ';wap">&lt;</a> ' : '', '(', $context['page_info']['current_page'], '/', $context['page_info']['num_pages'], ')', !empty($context['links']['next']) ? ' <a href="' . $context['links']['next'] . ';wap">&gt;</a> <a href="' . $context['links']['last'] . ';wap">&gt;&gt;</a> ' : '', '<br /></p>';
  76. foreach ($context['topics'] as $topic)
  77. echo '
  78. <p><a href="', $scripturl, '?topic=', $topic['id'], '.0;wap">', $topic['first_post']['subject'], '</a>', (!$topic['approved'] ? '&nbsp;<em>(' . $txt['awaiting_approval'] . ')</em>' : ''), ' - ', $topic['first_post']['member']['name'], '<br /></p>';
  79. echo '
  80. <p>', $txt['pages'], ': ', !empty($context['links']['prev']) ? '<a href="' . $context['links']['first'] . ';wap">&lt;&lt;</a> <a href="' . $context['links']['prev'] . ';wap">&lt;</a> ' : '', '(', $context['page_info']['current_page'], '/', $context['page_info']['num_pages'], ')', !empty($context['links']['next']) ? ' <a href="' . $context['links']['next'] . ';wap">&gt;</a> <a href="' . $context['links']['last'] . ';wap">&gt;&gt;</a> ' : '', '</p>';
  81. }
  82. echo '
  83. </card>';
  84. }
  85. function template_wap_display()
  86. {
  87. global $context, $settings, $options, $txt;
  88. echo '
  89. <card id="main" title="', $context['page_title'], '">
  90. <p><strong>' . $context['linktree'][1]['name'] . ' > ' . $context['linktree'][count($context['linktree']) - 2]['name'] . '</strong></p>
  91. <p><strong>', $context['subject'], '</strong></p>
  92. <p>', $txt['pages'], ': ', !empty($context['links']['prev']) ? '<a href="' . $context['links']['first'] . ';wap">&lt;&lt;</a> <a href="' . $context['links']['prev'] . ';wap">&lt;</a> ' : '', '(', $context['page_info']['current_page'], '/', $context['page_info']['num_pages'], ')', !empty($context['links']['next']) ? ' <a href="' . $context['links']['next'] . ';wap">&gt;</a> <a href="' . $context['links']['last'] . ';wap">&gt;&gt;</a> ' : '', '<br /><br /></p>';
  93. while ($message = $context['get_message']())
  94. {
  95. // This is a special modification to the post so it will work on phones:
  96. $message['body'] = preg_replace('~<div class="(?:quote|code)header">(.+?)</div>~', '<br />--- $1 ---', $message['body']);
  97. $message['body'] = strip_tags(str_replace(
  98. array(
  99. '<blockquote>',
  100. '</blockquote>',
  101. '<code>',
  102. '</code>',
  103. '<li>',
  104. $txt['code_select'],
  105. ),
  106. array(
  107. '<br>',
  108. '<br>--- ' . $txt['wireless_end_quote'] . ' ---<br>',
  109. '<br>',
  110. '<br>--- ' . $txt['wireless_end_code'] . ' ---<br>',
  111. '<br>* ',
  112. '',
  113. ), $message['body']), '<br>');
  114. echo '
  115. <p><u>', $message['member']['name'], '</u>:', (!$message['approved'] ? '&nbsp;<em>(' . $txt['awaiting_approval'] . ')</em>' : ''), '<br /></p>
  116. <p>', $message['body'], '<br /><br /></p>';
  117. }
  118. echo '
  119. <p>', $txt['pages'], ': ', !empty($context['links']['prev']) ? '<a href="' . $context['links']['first'] . ';wap">&lt;&lt;</a> <a href="' . $context['links']['prev'] . ';wap">&lt;</a> ' : '', '(', $context['page_info']['current_page'], '/', $context['page_info']['num_pages'], ')', !empty($context['links']['next']) ? ' <a href="' . $context['links']['next'] . ';wap">&gt;</a> <a href="' . $context['links']['last'] . ';wap">&gt;&gt;</a> ' : '', '</p>
  120. </card>';
  121. }
  122. function template_wap_login()
  123. {
  124. global $context, $modSettings, $scripturl, $txt;
  125. echo '
  126. <card id="login" title="', $context['page_title'], '">';
  127. if (isset($context['login_errors']))
  128. foreach ($context['login_errors'] as $error)
  129. echo '
  130. <p><strong>', $error, '</strong></p>';
  131. echo '
  132. <p>', $txt['username'], ':<br />
  133. <input type="text" name="user" class="input_text" /></p>
  134. <p>', $txt['password'], ':<br />
  135. <input type="password" name="passwrd" class="input_password" /></p>';
  136. // Open ID?
  137. if (!empty($modSettings['enableOpenID']))
  138. echo '
  139. <p><strong>&mdash;', $txt['or'], '&mdash;</strong></p>
  140. <p>', $txt['openid'], ':<br />
  141. <input type="text" name="openid_identifier" class="input_text openid_login" size="17" /></p>';
  142. echo '
  143. <p><do type="accept" label="', $txt['login'], '">
  144. <go method="post" href="', $scripturl, '?action=login2;wap">
  145. <postfield name="user" value="$user" />
  146. <postfield name="passwrd" value="$passwrd" />
  147. <postfield name="cookieneverexp" value="1" />
  148. </go>
  149. </do></p>
  150. </card>';
  151. }
  152. function template_wap_recent()
  153. {
  154. global $context, $settings, $options, $scripturl, $txt;
  155. echo '
  156. <card id="recent" title="', $context['page_title'], '">
  157. <p><strong>', $_REQUEST['action'] == 'unread' ? $txt['wireless_recent_unread_posts'] : $txt['wireless_recent_unread_replies'], '</strong></p>';
  158. if (empty($context['topics']))
  159. echo '
  160. <p>', $txt['old_posts'], '</p>';
  161. else
  162. {
  163. echo '
  164. <p>', $txt['pages'], ': ', !empty($context['links']['prev']) ? '<a href="' . $context['links']['first'] . ';wap">&lt;&lt;</a> <a href="' . $context['links']['prev'] . ';wap">&lt;</a> ' : '', '(', $context['page_info']['current_page'], '/', $context['page_info']['num_pages'], ')', !empty($context['links']['next']) ? ' <a href="' . $context['links']['next'] . ';wap">&gt;</a> <a href="' . $context['links']['last'] . ';wap">&gt;&gt;</a> ' : '', '<br /><br /></p>';
  165. foreach ($context['topics'] as $topic)
  166. {
  167. echo '
  168. <p><a href="', $scripturl, '?topic=', $topic['id'], '.msg', $topic['new_from'], ';topicseen;imode#new">', $topic['first_post']['subject'], '</a></p>';
  169. }
  170. }
  171. echo '
  172. </card>';
  173. }
  174. function template_wap_error()
  175. {
  176. global $context, $settings, $options, $txt, $scripturl;
  177. echo '
  178. <card id="main" title="', $context['page_title'], '">
  179. <p><strong>', $context['error_title'], '</strong></p>
  180. <p>', $context['error_message'], '</p>
  181. <p><a href="', $scripturl, '?wap">', $txt['wireless_error_home'], '</a></p>
  182. </card>';
  183. }
  184. function template_wap_below()
  185. {
  186. global $context, $settings, $options, $txt;
  187. echo '
  188. <card id="switch" title="', $txt['wireless_go_to_full_version'], '">
  189. <p>
  190. <a href="', $context['linktree'][count($context['linktree']) - 1]['url'], (count($context['linktree']) > 1 ? ';' : '?'), 'nowap" rel="nofollow">', $txt['wireless_go_to_full_version'], '</a>
  191. </p>
  192. </card>
  193. </wml>';
  194. }
  195. // The cHTML protocol used for i-mode starts here.
  196. function template_imode_above()
  197. {
  198. global $context, $settings, $options, $user_info;
  199. echo '<!DOCTYPE HTML PUBLIC "-//W3C//DTD Compact HTML 1.0 Draft//EN">
  200. <html', $context['right_to_left'] ? ' dir="rtl"' : '', '>
  201. <head>
  202. <meta http-equiv="Content-Type" content="text/html; charset=', $context['character_set'], '" />';
  203. // Present a canonical url for search engines to prevent duplicate content in their indices.
  204. if ($user_info['is_guest'] && !empty($context['canonical_url']))
  205. echo '
  206. <link rel="canonical" href="', $context['canonical_url'], '" />';
  207. echo '
  208. <title>', $context['page_title'], '</title>
  209. </head>
  210. <body>';
  211. }
  212. function template_imode_boardindex()
  213. {
  214. global $context, $settings, $options, $scripturl, $txt;
  215. echo '
  216. <table border="0" cellspacing="0" cellpadding="0">
  217. <tr bgcolor="#6d92aa"><td><font color="#ffffff">', $context['forum_name_html_safe'], '</font></td></tr>';
  218. $count = 0;
  219. foreach ($context['categories'] as $category)
  220. {
  221. if (!empty($category['boards']) || $category['is_collapsed'])
  222. echo '
  223. <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>';
  224. foreach ($category['boards'] as $board)
  225. {
  226. $count++;
  227. echo '
  228. <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>';
  229. }
  230. }
  231. echo '
  232. <tr bgcolor="#6d92aa"><td>', $txt['wireless_options'], '</td></tr>';
  233. if ($context['user']['is_guest'])
  234. echo '
  235. <tr><td><a href="', $scripturl, '?action=login;imode">', $txt['wireless_options_login'], '</a></td></tr>';
  236. else
  237. {
  238. if ($context['allow_pm'])
  239. echo '
  240. <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>';
  241. echo '
  242. <tr><td><a href="', $scripturl, '?action=unread;imode">', $txt['wireless_recent_unread_posts'], '</a></td></tr>
  243. <tr><td><a href="', $scripturl, '?action=unreadreplies;imode">', $txt['wireless_recent_unread_replies'], '</a></td></tr>
  244. <tr><td><a href="', $scripturl, '?action=logout;', $context['session_var'], '=', $context['session_id'], ';imode">', $txt['wireless_options_logout'], '</a></td></tr>';
  245. }
  246. echo '
  247. </table>';
  248. }
  249. function template_imode_messageindex()
  250. {
  251. global $context, $settings, $options, $scripturl, $txt;
  252. echo '
  253. <table border="0" cellspacing="0" cellpadding="0">
  254. <tr bgcolor="#6d92aa"><td><font color="#ffffff">', $context['name'], '</font></td></tr>';
  255. if (!empty($context['boards']))
  256. {
  257. echo '
  258. <tr bgcolor="#b6dbff"><td>', $txt['parent_boards'], '</td></tr>';
  259. foreach ($context['boards'] as $board)
  260. echo '
  261. <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>';
  262. }
  263. $count = 0;
  264. if (!empty($context['topics']))
  265. {
  266. echo '
  267. <tr bgcolor="#b6dbff"><td>', $txt['topics'], '</td></tr>
  268. <tr><td>', !empty($context['links']['prev']) ? '<a href="' . $context['links']['first'] . ';imode">&lt;&lt;</a> <a href="' . $context['links']['prev'] . ';imode">&lt;</a> ' : '', '(', $context['page_info']['current_page'], '/', $context['page_info']['num_pages'], ')', !empty($context['links']['next']) ? ' <a href="' . $context['links']['next'] . ';imode">&gt;</a> <a href="' . $context['links']['last'] . ';imode">&gt;&gt;</a> ' : '', '</td></tr>';
  269. foreach ($context['topics'] as $topic)
  270. {
  271. $count++;
  272. echo '
  273. <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'] ? '&nbsp;<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>';
  274. }
  275. }
  276. echo '
  277. <tr bgcolor="#b6dbff"><td>', $txt['wireless_navigation'], '</td></tr>
  278. <tr><td>&#59115; <a href="', $context['links']['up'], ($context['links']['up'] == $scripturl . '?' ? '' : ';'), 'imode" accesskey="0">', $txt['wireless_navigation_up'], '</a></td></tr>', !empty($context['links']['next']) ? '
  279. <tr><td>&#59104; <a href="' . $context['links']['next'] . ';imode" accesskey="#">' . $txt['wireless_navigation_next'] . '</a></td></tr>' : '', !empty($context['links']['prev']) ? '
  280. <tr><td><strong>[*]</strong> <a href="' . $context['links']['prev'] . ';imode" accesskey="*">' . $txt['wireless_navigation_prev'] . '</a></td></tr>' : '', $context['can_post_new'] ? '
  281. <tr><td><a href="' . $scripturl . '?action=post;board=' . $context['current_board'] . '.0;imode">' . $txt['start_new_topic'] . '</a></td></tr>' : '', '
  282. </table>';
  283. }
  284. function template_imode_display()
  285. {
  286. global $context, $settings, $options, $scripturl, $board, $txt;
  287. echo '
  288. <table border="0" cellspacing="0" cellpadding="0">
  289. <tr bgcolor="#b6dbff"><td>' . $context['linktree'][1]['name'] . ' > ' . $context['linktree'][count($context['linktree']) - 2]['name'] . '</td></tr>
  290. <tr bgcolor="#6d92aa"><td><font color="#ffffff">', $context['subject'], '</font></td></tr>
  291. <tr><td>', !empty($context['links']['prev']) ? '<a href="' . $context['links']['first'] . ';imode">&lt;&lt;</a> <a href="' . $context['links']['prev'] . ';imode">&lt;</a> ' : '', '(', $context['page_info']['current_page'], '/', $context['page_info']['num_pages'], ')', !empty($context['links']['next']) ? ' <a href="' . $context['links']['next'] . ';imode">&gt;</a> <a href="' . $context['links']['last'] . ';imode">&gt;&gt;</a> ' : '', '</td></tr>';
  292. while ($message = $context['get_message']())
  293. {
  294. // This is a special modification to the post so it will work on phones:
  295. $message['body'] = preg_replace('~<div class="(?:quote|code)header">(.+?)</div>~', '<br />--- $1 ---', $message['body']);
  296. $message['body'] = strip_tags(str_replace(
  297. array(
  298. '<blockquote>',
  299. '</blockquote>',
  300. '<code>',
  301. '</code>',
  302. '<li>',
  303. $txt['code_select'],
  304. ),
  305. array(
  306. '<br />',
  307. '<br />--- ' . $txt['wireless_end_quote'] . ' ---<br />',
  308. '<br />',
  309. '<br />--- ' . $txt['wireless_end_code'] . ' ---<br />',
  310. '<br />* ',
  311. '',
  312. ), $message['body']), '<br>');
  313. echo '
  314. <tr><td>', $message['first_new'] ? '
  315. <a id="new"></a>' : '',
  316. $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>', ':
  317. ', ((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'] ? '&nbsp;<em>(' . $txt['awaiting_approval'] . ')</em>' : ''), '<br />
  318. ', $message['body'], '
  319. </td></tr>';
  320. }
  321. echo '
  322. <tr bgcolor="#b6dbff"><td>', $txt['wireless_navigation'], '</td></tr>
  323. <tr><td>&#59115; <a href="', $context['links']['up'], ';imode" accesskey="0">', $txt['wireless_navigation_index'], '</a></td></tr>', $context['user']['is_logged'] ? '
  324. <tr><td>&#59115; <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']) ? '
  325. <tr><td><a href="' . $context['links']['next'] . ';imode' . $context['wireless_moderate'] . '" accesskey="#">' . $txt['wireless_navigation_next'] . '</a></td></tr>' : '', !empty($context['links']['prev']) ? '
  326. <tr><td><a href="' . $context['links']['prev'] . ';imode' . $context['wireless_moderate'] . '" accesskey="*">' . $txt['wireless_navigation_prev'] . '</a></td></tr>' : '', $context['can_reply'] ? '
  327. <tr><td><a href="' . $scripturl . '?action=post;topic=' . $context['current_topic'] . '.' . $context['start'] . ';imode">' . $txt['reply'] . '</a></td></tr>' : '';
  328. if (!empty($context['wireless_more']) && empty($context['wireless_moderate']))
  329. echo '
  330. <tr><td><a href="', $scripturl, '?topic=', $context['current_topic'], '.', $context['start'], ';moderate;imode">', $txt['wireless_display_moderate'], '</a></td></tr>';
  331. elseif (!empty($context['wireless_moderate']))
  332. {
  333. if ($context['can_sticky'])
  334. echo '
  335. <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>';
  336. if ($context['can_lock'])
  337. echo '
  338. <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>';
  339. }
  340. echo '
  341. </table>';
  342. }
  343. function template_imode_post()
  344. {
  345. global $context, $settings, $options, $scripturl, $txt, $modSettings;
  346. // @todo $modSettings['guest_post_no_email']
  347. echo '
  348. <form action="', $scripturl, '?action=', $context['destination'], ';board=', $context['current_board'], '.0;imode" method="post">
  349. <table border="0" cellspacing="0" cellpadding="0">';
  350. if (!$context['becomes_approved'])
  351. echo '
  352. <tr><td>' . $txt['wait_for_approval'] . '<input type="hidden" name="not_approved" value="1" /></td></tr>';
  353. if ($context['locked'])
  354. echo '
  355. <tr><td>' . $txt['topic_locked_no_reply'] . '</td></tr>';
  356. if (isset($context['name']) && isset($context['email']))
  357. {
  358. echo '
  359. <tr><td>', isset($context['post_error']['long_name']) || isset($context['post_error']['no_name']) ? '<font color="#cc0000">' . $txt['username'] . '</font>' : $txt['username'], ':</td></tr>
  360. <tr><td><input type="text" name="guestname" value="', $context['name'], '" class="input_text" /></td></tr>';
  361. if (empty($modSettings['guest_post_no_email']))
  362. echo '
  363. <tr><td>', isset($context['post_error']['no_email']) || isset($context['post_error']['bad_email']) ? '<font color="#cc0000">' . $txt['email'] . '</font>' : $txt['email'], ':</td></tr>
  364. <tr><td><input type="text" name="email" value="', $context['email'], '" class="input_text" /></td></tr>';
  365. }
  366. // @todo Needs a more specific imode template.
  367. if ($context['require_verification'])
  368. echo '
  369. <tr><td>', !empty($context['post_error']['need_qr_verification']) ? '<font color="#cc0000">' . $txt['verification'] . '</font>' : $txt['verification'], ':</td></tr>
  370. <tr><td>', template_control_verification($context['visual_verification_id'], 'all'), '</td></tr>';
  371. echo '
  372. <tr><td>', isset($context['post_error']['no_subject']) ? '<font color="#FF0000">' . $txt['subject'] . '</font>' : $txt['subject'], ':</td></tr>
  373. <tr><td><input type="text" name="subject"', $context['subject'] == '' ? '' : ' value="' . $context['subject'] . '"', ' maxlength="80" class="input_text" /></td></tr>
  374. <tr><td>', isset($context['post_error']['no_message']) || isset($context['post_error']['long_message']) ? '<font color="#ff0000">' . $txt['message'] . '</font>' : $txt['message'], ':</td></tr>
  375. <tr><td><textarea name="message" id="message" rows="5" cols="20">', $context['message'], '</textarea></td></tr>
  376. <tr><td>
  377. <input type="submit" name="post" value="', $context['submit_label'], '" class="button_submit" />
  378. <input type="hidden" name="icon" value="wireless" />
  379. <input type="hidden" name="goback" value="', $context['back_to_topic'] || !empty($options['return_to_post']) ? '1' : '0', '" />
  380. <input type="hidden" name="seqnum" value="', $context['form_sequence_number'], '" />
  381. <input type="hidden" name="', $context['session_var'], '" value="', $context['session_id'], '" />', isset($context['current_topic']) ? '
  382. <input type="hidden" name="topic" value="' . $context['current_topic'] . '" />' : '', '
  383. <input type="hidden" name="notify" value="', $context['notify'] || !empty($options['auto_notify']) ? '1' : '0', '" />
  384. </td></tr>
  385. <tr><td>
  386. &#59115; ', !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>', '
  387. </td></tr>
  388. </table>
  389. </form>';
  390. }
  391. function template_imode_login()
  392. {
  393. global $context, $settings, $options, $scripturl, $txt, $modSettings;
  394. echo '
  395. <form action="', $scripturl, '?action=login2;imode" method="post">
  396. <table border="0" cellspacing="0" cellpadding="0">
  397. <tr bgcolor="#b6dbff"><td>', $txt['login'], '</td></tr>';
  398. if (isset($context['login_errors']))
  399. foreach ($context['login_errors'] as $error)
  400. echo '
  401. <tr><td><strong><font color="#ff00000">', $error, '</strong></td></tr>';
  402. echo '
  403. <tr><td>', $txt['username'], ':</td></tr>
  404. <tr><td><input type="text" name="user" size="10" class="input_text" /></td></tr>
  405. <tr><td>', $txt['password'], ':</td></tr>
  406. <tr><td><input type="password" name="passwrd" size="10" class="input_password" /></td></tr>';
  407. // Open ID?
  408. if (!empty($modSettings['enableOpenID']))
  409. echo '
  410. <tr><td><strong>&mdash;', $txt['or'], '&mdash;</strong></td></tr>
  411. <tr><td>', $txt['openid'], ':</td></tr>
  412. <tr><td><input type="text" name="openid_identifier" class="input_text openid_login" size="17" /></td></tr>';
  413. echo '
  414. <tr><td><input type="submit" value="', $txt['login'], '" class="button_submit" /><input type="hidden" name="cookieneverexp" value="1" /></td></tr>
  415. <tr bgcolor="#b6dbff"><td>', $txt['wireless_navigation'], '</td></tr>
  416. <tr><td>[0] <a href="', $scripturl, '?imode" accesskey="0">', $txt['wireless_navigation_up'], '</a></td></tr>
  417. </table>
  418. </form>';
  419. }
  420. function template_imode_pm()
  421. {
  422. global $context, $settings, $options, $scripturl, $txt, $user_info;
  423. if ($_REQUEST['action'] == 'findmember')
  424. {
  425. echo '
  426. <form action="', $scripturl, '?action=findmember;', $context['session_var'], '=', $context['session_id'], ';imode" method="post">
  427. <table border="0" cellspacing="0" cellpadding="0">
  428. <tr bgcolor="#6d92aa"><td><font color="#ffffff">', $txt['wireless_pm_search_member'], '</font></td></tr>
  429. <tr bgcolor="#b6dbff"><td>', $txt['find_members'], '</td></tr>
  430. <tr><td>
  431. <strong>', $txt['wireless_pm_search_name'], ':</strong>
  432. <input type="text" name="search" value="', isset($context['last_search']) ? $context['last_search'] : '', '" class="input_text" />', empty($_REQUEST['u']) ? '' : '
  433. <input type="hidden" name="u" value="' . $_REQUEST['u'] . '" />', '
  434. </td></tr>
  435. <tr><td><input type="submit" value="', $txt['search'], '" class="button_submit" /></td></tr>';
  436. if (!empty($context['last_search']))
  437. {
  438. echo '
  439. <tr bgcolor="#b6dbff"><td>', $txt['find_results'], '</td></tr>';
  440. if (empty($context['results']))
  441. echo '
  442. <tr bgcolor="#b6dbff"><td>[-] ', $txt['find_no_results'], '</tr></td>';
  443. else
  444. {
  445. echo '
  446. <tr bgcolor="#b6dbff"><td>', empty($context['links']['prev']) ? '' : '<a href="' . $context['links']['first'] . ';imode">&lt;&lt;</a> <a href="' . $context['links']['prev'] . ';imode">&lt;</a> ', '(', $context['page_info']['current_page'], '/', $context['page_info']['num_pages'], ')', empty($context['links']['next']) ? '' : ' <a href="' . $context['links']['next'] . ';imode">&gt;</a> <a href="' . $context['links']['last'] . ';imode">&gt;&gt;</a> ', '</tr></td>';
  447. $count = 0;
  448. foreach ($context['results'] as $result)
  449. {
  450. $count++;
  451. echo '
  452. <tr bgcolor="#b6dbff"><td>
  453. ', $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>
  454. </tr></td>';
  455. }
  456. }
  457. }
  458. echo '
  459. <tr bgcolor="#b6dbff"><td>', $txt['wireless_navigation'], '</tr></td>
  460. <tr><td>[0] <a href="', $context['links']['up'], ';imode" accesskey="0">', $txt['wireless_navigation_up'], '</a></tr></td>';
  461. if (!empty($context['results']))
  462. echo empty($context['links']['next']) ? '' : '
  463. <tr><td>[#] <a href="' . $context['links']['next'] . ';imode" accesskey="#">' . $txt['wireless_navigation_next'] . '</a></tr></td>', empty($context['links']['prev']) ? '' : '
  464. <tr><td>[*] <a href="' . $context['links']['prev'] . ';imode" accesskey="*">' . $txt['wireless_navigation_prev'] . '</a></tr></td>';
  465. echo '
  466. </table>
  467. </form>';
  468. }
  469. elseif (!empty($_GET['sa']))
  470. {
  471. echo '
  472. <table border="0" cellspacing="0" cellpadding="0">';
  473. if ($_GET['sa'] == 'addbuddy')
  474. {
  475. echo '
  476. <tr bgcolor="#6d92aa"><td><font color="#ffffff">', $txt['wireless_pm_add_buddy'], '</font></td></tr>
  477. <tr bgcolor="#b6dbff"><td>', $txt['wireless_pm_select_buddy'], '</td></tr>';
  478. $count = 0;
  479. foreach ($context['buddies'] as $buddy)
  480. {
  481. $count++;
  482. if ($buddy['selected'])
  483. echo '
  484. <tr><td>[-] <span style="color: gray">', $buddy['name'], '</span></tr></td>';
  485. else
  486. echo '
  487. <tr><td>
  488. ', $count < 10 ? '&#' . (59105 + $count) . '; ' : '', '<a href="', $buddy['add_href'], ';imode"', $count < 10 ? ' accesskey="' . $count . '"' : '', '>', $buddy['name'], '</a>
  489. </tr></td>';
  490. }
  491. echo '
  492. <tr bgcolor="#b6dbff"><td>', $txt['wireless_navigation'], '</tr></td>
  493. <tr><td>[0] <a href="', $context['pm_href'], ';imode" accesskey="0">', $txt['wireless_navigation_up'], '</a></tr></td>
  494. </table>';
  495. }
  496. if ($_GET['sa'] == 'send' || $_GET['sa'] == 'send2')
  497. {
  498. echo '
  499. <form action="', $scripturl, '?action=pm;sa=send2;imode" method="post">
  500. <table border="0" cellspacing="0" cellpadding="0">
  501. <tr bgcolor="#6d92aa"><td><font color="#ffffff">', $txt['new_message'], '</tr></td>', empty($context['post_error']['messages']) ? '' : '
  502. <tr><td><font color="#ff0000">' . implode('<br />', $context['post_error']['messages']) . '</font></tr></td>', '
  503. <tr><td>
  504. <strong>', $txt['pm_to'], ':</strong> ';
  505. if (empty($context['recipients']['to']))
  506. echo $txt['wireless_pm_no_recipients'];
  507. else
  508. {
  509. $to_names = array();
  510. $ids = array();
  511. foreach ($context['recipients']['to'] as $to)
  512. {
  513. $ids[] = $to['id'];
  514. $to_names[] = $to['name'];
  515. }
  516. echo implode(', ', $to_names);
  517. $ids = implode(',', $ids);
  518. }
  519. echo '
  520. ', empty($ids) ? '' : '<input type="hidden" name="u" value="' . $ids . '" />', '<br />
  521. <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 />
  522. <a href="' . $scripturl . '?action=pm;sa=addbuddy' . (empty($ids) ? '' : ';u=' . $ids) . ';imode">' . $txt['wireless_pm_add_buddy'] . '</a>', '
  523. </tr></td>
  524. <tr><td>
  525. <strong>', $txt['subject'], ':</strong> <input type="text" name="subject" value="', $context['subject'], '" class="input_text" />
  526. </tr></td>
  527. <tr><td>
  528. <strong>', $txt['message'], ':</strong><br />
  529. <textarea name="message" id="message" rows="5" cols="20">', $context['message'], '</textarea>
  530. </tr></td>
  531. <tr><td>
  532. <input type="submit" value="', $txt['send_message'], '" class="button_submit" />
  533. <input type="hidden" name="outbox" value="', $context['copy_to_outbox'] ? '1' : '0', '" />
  534. <input type="hidden" name="', $context['session_var'], '" value="', $context['session_id'], '" />
  535. <input type="hidden" name="seqnum" value="', $context['form_sequence_number'], '" />
  536. <input type="hidden" name="replied_to" value="', !empty($context['quoted_message']['id']) ? $context['quoted_message']['id'] : 0, '" />
  537. <input type="hidden" name="pm_head" value="', !empty($context['quoted_message']['pm_head']) ? $context['quoted_message']['pm_head'] : 0, '" />
  538. <input type="hidden" name="f" value="', isset($context['folder']) ? $context['folder'] : '', '" />
  539. <input type="hidden" name="l" value="', isset($context['current_label_id']) ? $context['current_label_id'] : -1, '" />
  540. </tr></td>';
  541. if ($context['reply'])
  542. echo '
  543. <tr bgcolor="#b6dbff"><td>', $txt['wireless_pm_reply_to'], '</tr></td>
  544. <tr><td><strong>', $context['quoted_message']['subject'], '</strong></tr></td>
  545. <tr><td>', $context['quoted_message']['body'], '</tr></td>';
  546. echo '
  547. <tr bgcolor="#b6dbff"><td>', $txt['wireless_navigation'], '</tr></td>
  548. <tr><td>[0] <a href="', $scripturl, '?action=pm;imode" accesskey="0">', $txt['wireless_navigation_up'], '</a></tr></td>
  549. </table>
  550. </form>';
  551. }
  552. }
  553. elseif (empty($_GET['pmsg']))
  554. {
  555. echo '
  556. <table border="0" cellspacing="0" cellpadding="0">
  557. <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>
  558. <tr><td>', empty($context['links']['prev']) ? '' : '<a href="' . $context['links']['first'] . ';imode">&lt;&lt;</a> <a href="' . $context['links']['prev'] . ';imode">&lt;</a> ', '(', $context['page_info']['current_page'], '/', $context['page_info']['num_pages'], ')', empty($context['links']['next']) ? '' : ' <a href="' . $context['links']['next'] . ';imode">&gt;</a> <a href="' . $context['links']['last'] . ';imode">&gt;&gt;</a> ', '</tr></td>';
  559. $count = 0;
  560. while ($message = $context['get_pmessage']())
  561. {
  562. $count++;
  563. echo '
  564. <tr><td>
  565. ', $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'] . ']' : '', '
  566. </td></tr>';
  567. }
  568. if ($context['currently_using_labels'])
  569. {
  570. $labels = array();
  571. ksort($context['labels']);
  572. foreach ($context['labels'] as $label)
  573. $labels[] = '<a href="' . $scripturl . '?action=pm;l=' . $label['id'] . ';imode">' . $label['name'] . '</a>' . (!empty($label['unread_messages']) ? ' (' . $label['unread_messages'] . ')' : '');
  574. echo '
  575. <tr bgcolor="#6d92aa"><td><font color="#ffffff">', $txt['pm_labels'], '</font></td></tr>
  576. <tr><td>
  577. ', implode(', ', $labels), '
  578. </td></tr>';
  579. }
  580. echo '
  581. <tr bgcolor="#b6dbff"><td>', $txt['wireless_navigation'], '</tr></td>
  582. <tr><td>[0] <a href="', $scripturl, '?imode" accesskey="0">', $txt['wireless_navigation_up'], '</a></tr></td>', empty($context['links']['next']) ? '' : '
  583. <tr><td>[#] <a href="' . $context['links']['next'] . ';imode" accesskey="#">' . $txt['wireless_navigation_next'] . '</a></tr></td>', empty($context['links']['prev']) ? '' : '
  584. <tr><td>[*] <a href="' . $context['links']['prev'] . ';imode" accesskey="*">' . $txt['wireless_navigation_prev'] . '</a></tr></td>', $context['can_send_pm'] ? '
  585. <tr><td><a href="' . $scripturl . '?action=pm;sa=send;imode">' . $txt['new_message'] . '</a></tr></td>' : '', '
  586. </table>';
  587. }
  588. else
  589. {
  590. $message = $context['get_pmessage']();
  591. $message['body'] = preg_replace('~<div class="(?:quote|code)header">(.+?)</div>~', '<br />--- $1 ---', $message['body']);
  592. $message['body'] = strip_tags(str_replace(
  593. array(
  594. '<blockquote>',
  595. '</blockquote>',
  596. '<code>',
  597. '</code>',
  598. '<li>',
  599. $txt['code_select'],
  600. ),
  601. array(
  602. '<br />',
  603. '<br />--- ' . $txt['wireless_end_quote'] . ' ---<br />',
  604. '<br />',
  605. '<br />--- ' . $txt['wireless_end_code'] . ' ---<br />',
  606. '<br />* ',
  607. '',
  608. ), $message['body']), '<br>');
  609. echo '
  610. <table border="0" cellspacing="0" cellpadding="0">
  611. <tr bgcolor="#6d92aa"><td><font color="#ffffff">', $message['subject'], '</td></tr>
  612. <tr bgcolor="#b6dbff"><td>
  613. <strong>', $txt['wireless_pm_by'], ':</strong> ', $message['member']['name'], '<br />
  614. <strong>', $txt['on'], ':</strong> ', $message['time'], '
  615. </td></tr>
  616. <tr><td>
  617. ', $message['body'], '
  618. </td></tr>
  619. <tr bgcolor="#b6dbff"><td>', $txt['wireless_navigation'], '</tr></td>
  620. <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>';
  621. if ($context['can_send_pm'])
  622. echo '
  623. <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>';
  624. if ($context['can_send_pm'] && $message['number_recipients'] > 1)
  625. echo '
  626. <tr><td><a href="', $scripturl, '?action=pm;sa=send;pmsg=', $message['id'], ';u=all;reply;imode">', $txt['wireless_pm_reply_all'], '</a></tr></td>';
  627. echo '
  628. </table>';
  629. }
  630. }
  631. function template_imode_recent()
  632. {
  633. global $context, $settings, $options, $scripturl, $txt;
  634. echo '
  635. <table border="0" cellspacing="0" cellpadding="0">
  636. <tr bgcolor="#6d92aa"><td><font color="#ffffff">', $_REQUEST['action'] == 'unread' ? $txt['wireless_recent_unread_posts'] : $txt['wireless_recent_unread_replies'], '</tr></td>';
  637. $count = 0;
  638. if (empty($context['topics']))
  639. echo '
  640. <tr><td>', $txt['old_posts'], '</td></tr>';
  641. else
  642. {
  643. echo '
  644. <tr><td>', !empty($context['links']['prev']) ? '<a href="' . $context['links']['first'] . ';imode">&lt;&lt;</a> <a href="' . $context['links']['prev'] . ';imode">&lt;</a> ' : '', '(', $context['page_info']['current_page'], '/', $context['page_info']['num_pages'], ')', !empty($context['links']['next']) ? ' <a href="' . $context['links']['next'] . ';imode">&gt;</a> <a href="' . $context['links']['last'] . ';imode">&gt;&gt;</a> ' : '', '</td></tr>';
  645. foreach ($context['topics'] as $topic)
  646. {
  647. $count++;
  648. echo '
  649. <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>';
  650. }
  651. }
  652. echo '
  653. <tr bgcolor="#b6dbff"><td>', $txt['wireless_navigation'], '</td></tr>
  654. <tr><td>[0] <a href="', $context['links']['up'], '?imode" accesskey="0">', $txt['wireless_navigation_up'], '</a></td></tr>', !empty($context['links']['next']) ? '
  655. <tr><td>[#] <a href="' . $context['links']['next'] . ';imode" accesskey="#">' . $txt['wireless_navigation_next'] . '</a></td></tr>' : '', !empty($context['links']['prev']) ? '
  656. <tr><td>[*] <a href="' . $context['links']['prev'] . ';imode" accesskey="*">' . $txt['wireless_navigation_prev'] . '</a></td></tr>' : '', '
  657. </table>';
  658. }
  659. function template_imode_error()
  660. {
  661. global $context, $settings, $options, $txt, $scripturl;
  662. echo '
  663. <table border="0" cellspacing="0" cellpadding="0">
  664. <tr bgcolor="#6d92aa"><td><font color="#ffffff">', $context['error_title'], '</font></td></tr>
  665. <tr><td>', $context['error_message'], '</td></tr>
  666. <tr class="windowbg"><td>[0] <a href="', $scripturl, '?imode" accesskey="0">', $txt['wireless_error_home'], '</a></td></tr>
  667. </table>';
  668. }
  669. function template_imode_profile()
  670. {
  671. global $context, $settings, $options, $scripturl, $board, $txt;
  672. echo '
  673. <table border="0" cellspacing="0" cellpadding="0">
  674. <tr bgcolor="#6d92aa"><td><font color="#ffffff">', $txt['summary'], ' - ', $context['member']['name'], '</font></td></tr>
  675. <tr><td>
  676. <strong>', $txt['name'], ':</strong> ', $context['member']['name'], '
  677. </td></tr>
  678. <tr><td>
  679. <strong>', $txt['position'], ': </strong>', (!empty($context['member']['group']) ? $context['member']['group'] : $context['member']['post_group']), '
  680. </td></tr>
  681. <tr><td>
  682. <strong>', $txt['lastLoggedIn'], ':</strong> ', $context['member']['last_login'], '
  683. </td></tr>';
  684. if (!empty($context['member']['bans']))
  685. {
  686. echo '
  687. <tr><td>
  688. <font color="red"><strong>', $txt['user_banned_by_following'], ':</strong></font>';
  689. foreach ($context['member']['bans'] as $ban)
  690. echo '
  691. <br />', $ban['explanation'], '';
  692. echo '
  693. </td></tr>';
  694. }
  695. echo '
  696. <tr bgcolor="#b6dbff"><td>', $txt['additional_info'], '</td></tr>';
  697. if (!$context['user']['is_owner'] && $context['can_send_pm'])
  698. echo '
  699. <tr><td><a href="', $scripturl, '?action=pm;sa=send;u=', $context['id_member'], ';imode">', $txt['wireless_profile_pm'], '.</a></td></tr>';
  700. if (!$context['user']['is_owner'] && !empty($context['can_edit_ban']))
  701. echo '
  702. <tr><td><a href="', $scripturl, '?action=admin;area=ban;sa=add;u=', $context['id_member'], ';imode">', $txt['profileBanUser'], '.</a></td></tr>';
  703. echo '
  704. <tr><td><a href="', $scripturl, '?imode">', $txt['wireless_error_home'], '.</a></td></tr>';
  705. echo '
  706. </table>';
  707. }
  708. function template_imode_ban_edit()
  709. {
  710. global $context, $settings, $options, $scripturl, $board, $txt, $modSettings;
  711. echo '
  712. <form action="', $scripturl, '?action=admin;area=ban;sa=add;imode" method="post">
  713. <table border="0" cellspacing="0" cellpadding="0">
  714. <tr bgcolor="#6d92aa"><td><font color="#ffffff">', $context['ban']['is_new'] ? $txt['ban_add_new'] : $txt['ban_edit'] . ' \'' . $context['ban']['name'] . '\'', '</font></td></tr>
  715. <tr><td>
  716. <strong>', $txt['ban_name'], ': </strong>
  717. <input type="text" name="ban_name" value="', $context['ban']['name'], '" size="20" class="input_text" />
  718. </td></tr>
  719. <tr><td>
  720. <strong>', $txt['ban_expiration'], ': </strong><br />
  721. <input type="radio" name="expiration" value="never" ', $context['ban']['expiration']['status'] == 'never' ? ' checked="checked"' : '', ' class="input_radio" /> ', $txt['never'], '<br />
  722. <input type="radio" name="expiration" value="one_day" ', $context['ban']['expiration']['status'] == 'still_active_but_we_re_counting_the_days' ? ' 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 />
  723. <input type="radio" name="expiration" value="expired" ', $context['ban']['expiration']['status'] == 'expired' ? ' checked="checked"' : '', ' class="input_radio" /> ', $txt['ban_expired'], '<br />
  724. </td></tr>
  725. <tr><td>
  726. <strong>', $txt['ban_reason'], ': </strong>
  727. <input type="text" name="reason" value="', $context['ban']['reason'], '" size="20" class="input_text" />
  728. </td></tr>
  729. <tr><td>
  730. <strong>', $txt['ban_notes'], ': </strong><br />
  731. <textarea name="notes" cols="20" rows="3">', $context['ban']['notes'], '</textarea>
  732. </td></tr>
  733. <tr><td>
  734. <strong>', $txt['ban_restriction'], ': </strong><br />
  735. <input type="checkbox" name="full_ban" value="1"', $context['ban']['cannot']['access'] ? ' checked="checked"' : '', ' class="input_check" /> ', $txt['ban_full_ban'], '<br />
  736. <input type="checkbox" name="cannot_post" value="1"', $context['ban']['cannot']['post'] ? ' checked="checked"' : '', ' class="input_check" /> ', $txt['ban_cannot_post'], '<br />
  737. <input type="checkbox" name="cannot_register" value="1"', $context['ban']['cannot']['register'] ? ' checked="checked"' : '', ' class="input_check" /> ', $txt['ban_cannot_register'], '<br />
  738. <input type="checkbox" name="cannot_login" value="1"', $context['ban']['cannot']['login'] ? ' checked="checked"' : '', ' class="input_check" /> ', $txt['ban_cannot_login'], '
  739. </td></tr>';
  740. if (!empty($context['ban_suggestions']))
  741. {
  742. echo '
  743. <tr bgcolor="#b6dbff"><td>', $txt['ban_triggers'], '</td></tr>
  744. <tr><td>
  745. <input type="checkbox" name="ban_suggestion[]" value="main_ip" class="input_check" /> <strong>', $txt['wireless_ban_ip'], ':</strong><br />
  746. &nbsp;&nbsp;&nbsp;&nbsp;<input type="text" name="main_ip" value="', $context['ban_suggestions']['main_ip'], '" size="20" class="input_text" />
  747. </td></tr>';
  748. if (empty($modSettings['disableHostnameLookup']))
  749. echo '
  750. <tr><td>
  751. <input type="checkbox" name="ban_suggestion[]" value="hostname" class="input_check" /> <strong>', $txt['wireless_ban_hostname'], ':</strong><br />
  752. &nbsp;&nbsp;&nbsp;&nbsp;<input type="text" name="hostname" value="', $context['ban_suggestions']['hostname'], '" size="20" class="input_text" />
  753. </td></tr>';
  754. echo '
  755. <tr><td>
  756. <input type="checkbox" name="ban_suggestion[]" value="email" class="input_check" /> <strong>', $txt['wireless_ban_email'], ':</strong><br />
  757. &nbsp;&nbsp;&nbsp;&nbsp;<input type="text" name="email" value="', $context['ban_suggestions']['email'], '" size="20" class="input_text" />
  758. </td></tr>
  759. <tr><td>
  760. <input type="checkbox" name="ban_suggestion[]" value="user" class="input_check" /> <strong>', $txt['ban_on_username'], ':</strong><br />';
  761. if (empty($context['ban_suggestions']['member']['id']))
  762. echo '
  763. &nbsp;&nbsp;&nbsp;&nbsp;<input type="text" name="user" value="" size="20" class="input_text" />';
  764. else
  765. echo '
  766. &nbsp;&nbsp;&nbsp;&nbsp;', $context['ban_suggestions']['member']['name'], '
  767. <input type="hidden" name="bannedUser" value="', $context['ban_suggestions']['member']['id'], '" />';
  768. echo '
  769. </td></tr>';
  770. }
  771. echo '
  772. <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>
  773. <tr bgcolor="#b6dbff"><td>', $txt['wireless_additional_info'], '</td></tr>
  774. <tr><td><a href="', $scripturl, '?imode">', $txt['wireless_error_home'], '.</a></td></tr>';
  775. echo '
  776. </table>
  777. <input type="hidden" name="old_expire" value="', $context['ban']['expiration']['days'], '" />
  778. <input type="hidden" name="bg" value="', $context['ban']['id'], '" />
  779. <input type="hidden" name="', $context['session_var'], '" value="', $context['session_id'], '" />
  780. </form>';
  781. }
  782. function template_imode_below()
  783. {
  784. global $context, $settings, $options, $txt;
  785. echo '
  786. <br /><a href="', $context['linktree'][count($context['linktree']) - 1]['url'], (count($context['linktree']) > 1 ? ';' : '?'), 'nowap" rel="nofollow">', $txt['wireless_go_to_full_version'], '</a>
  787. </body>
  788. </html>';
  789. }
  790. // XHTMLMP (XHTML Mobile Profile) templates used for WAP 2.0 start here
  791. function template_wap2_above()
  792. {
  793. global $context, $settings, $options, $user_info;
  794. echo '<?xml version="1.0" encoding="', $context['character_set'], '"?', '>
  795. <!DOCTYPE html PUBLIC "-//WAPFORUM//DTD XHTML Mobile 1.0//EN" "http://www.wapforum.org/DTD/xhtml-mobile10.dtd">
  796. <html xmlns="http://www.w3.org/1999/xhtml"', $context['right_to_left'] ? ' dir="rtl"' : '', '>
  797. <head>
  798. <title>', $context['page_title'], '</title>';
  799. // Present a canonical url for search engines to prevent duplicate content in their indices.
  800. if ($user_info['is_guest'] && !empty($context['canonical_url']))
  801. echo '
  802. <link rel="canonical" href="', $context['canonical_url'], '" />';
  803. echo '
  804. <link rel="stylesheet" href="', $settings['default_theme_url'], '/css/wireless.css" type="text/css" />
  805. </head>
  806. <body>';
  807. }
  808. function template_wap2_boardindex()
  809. {
  810. global $context, $settings, $options, $scripturl, $txt;
  811. echo '
  812. <p class="catbg">', $context['forum_name_html_safe'], '</p>';
  813. $count = 0;
  814. foreach ($context['categories'] as $category)
  815. {
  816. if (!empty($category['boards']) || $category['is_collapsed'])
  817. echo '
  818. <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>';
  819. foreach ($category['boards'] as $board)
  820. {
  821. $count++;
  822. echo '
  823. <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>';
  824. }
  825. }
  826. echo '
  827. <p class="titlebg">', $txt['wireless_options'], '</p>';
  828. if ($context['user']['is_guest'])
  829. echo '
  830. <p class="windowbg"><a href="', $scripturl, '?action=login;wap2">', $txt['wireless_options_login'], '</a></p>';
  831. else
  832. {
  833. if ($context['allow_pm'])
  834. echo '
  835. <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>';
  836. echo '
  837. <p class="windowbg"><a href="', $scripturl, '?action=unread;wap2">', $txt['wireless_recent_unread_posts'], '</a></p>
  838. <p class="windowbg"><a href="', $scripturl, '?action=unreadreplies;wap2">', $txt['wireless_recent_unread_replies'], '</a></p>
  839. <p class="windowbg"><a href="', $scripturl, '?action=logout;', $context['session_var'], '=', $context['session_id'], ';wap2">', $txt['wireless_options_logout'], '</a></p>';
  840. }
  841. }
  842. function template_wap2_messageindex()
  843. {
  844. global $context, $settings, $options, $scripturl, $txt;
  845. echo '
  846. <p class="catbg">', $context['name'], '</p>';
  847. if (!empty($context['boards']))
  848. {
  849. echo '
  850. <p class="titlebg">', $txt['parent_boards'], '</p>';
  851. foreach ($context['boards'] as $board)
  852. echo '
  853. <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>';
  854. }
  855. $count = 0;
  856. if (!empty($context['topics']))
  857. {
  858. echo '
  859. <p class="titlebg">', $txt['topics'], '</p>
  860. <p class="windowbg">', !empty($context['links']['prev']) ? '<a href="' . $context['links']['first'] . ';wap2">&lt;&lt;</a> <a href="' . $context['links']['prev'] . ';wap2">&lt;</a> ' : '', '(', $context['page_info']['current_page'], '/', $context['page_info']['num_pages'], ')', !empty($context['links']['next']) ? ' <a href="' . $context['links']['next'] . ';wap2">&gt;</a> <a href="' . $context['links']['last'] . ';wap2">&gt;&gt;</a> ' : '', '</p>';
  861. foreach ($context['topics'] as $topic)
  862. {
  863. $count++;
  864. echo '
  865. <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'] ? '&nbsp;<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>';
  866. }
  867. }
  868. echo '
  869. <p class="titlebg">', $txt['wireless_navigation'], '</p>
  870. <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']) ? '
  871. <p class="windowbg">[#] <a href="' . $context['links']['next'] . ';wap2" accesskey="#">' . $txt['wireless_navigation_next'] . '</a></p>' : '', !empty($context['links']['prev']) ? '
  872. <p class="windowbg">[*] <a href="' . $context['links']['prev'] . ';wap2" accesskey="*">' . $txt['wireless_navigation_prev'] . '</a></p>' : '', $context['can_post_new'] ? '
  873. <p class="windowbg"><a href="' . $scripturl . '?action=post;board=' . $context['current_board'] . '.0;wap2">' . $txt['start_new_topic'] . '</a></p>' : '';
  874. }
  875. function template_wap2_display()
  876. {
  877. global $context, $settings, $options, $scripturl, $txt;
  878. echo '
  879. <p class="titlebg">' . $context['linktree'][1]['name'] . ' > ' . $context['linktree'][count($context['linktree']) - 2]['name'] . '</p>
  880. <p class="catbg">', $context['subject'], '</p>
  881. <p class="windowbg">', !empty($context['links']['prev']) ? '<a href="' . $context['links']['first'] . ';wap2">&lt;&lt;</a> <a href="' . $context['links']['prev'] . ';wap2">&lt;</a> ' : '', '(', $context['page_info']['current_page'], '/', $context['page_info']['num_pages'], ')', !empty($context['links']['next']) ? ' <a href="' . $context['links']['next'] . ';wap2">&gt;</a> <a href="' . $context['links']['last'] . ';wap2">&gt;&gt;</a> ' : '', '</p>';
  882. $alternate = true;
  883. while ($message = $context['get_message']

Large files files are truncated, but you can click here to view the full file