index.template.php 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569
  1. <?php
  2. /**
  3. * Simple Machines Forum (SMF)
  4. *
  5. * @package SMF
  6. * @author Simple Machines
  7. * @copyright 2011 Simple Machines
  8. * @license http://www.simplemachines.org/about/smf/license.php BSD
  9. *
  10. * @version 2.1 Alpha 1
  11. */
  12. /* This template is, perhaps, the most important template in the theme. It
  13. contains the main template layer that displays the header and footer of
  14. the forum, namely with main_above and main_below. It also contains the
  15. menu sub template, which appropriately displays the menu; the init sub
  16. template, which is there to set the theme up; (init can be missing.) and
  17. the linktree sub template, which sorts out the link tree.
  18. The init sub template should load any data and set any hardcoded options.
  19. The main_above sub template is what is shown above the main content, and
  20. should contain anything that should be shown up there.
  21. The main_below sub template, conversely, is shown after the main content.
  22. It should probably contain the copyright statement and some other things.
  23. The linktree sub template should display the link tree, using the data
  24. in the $context['linktree'] variable.
  25. The menu sub template should display all the relevant buttons the user
  26. wants and or needs.
  27. For more information on the templating system, please see the site at:
  28. http://www.simplemachines.org/
  29. */
  30. /**
  31. * Initialize the template... mainly little settings.
  32. */
  33. function template_init()
  34. {
  35. global $context, $settings, $options, $txt;
  36. /* Use images from default theme when using templates from the default theme?
  37. if this is 'always', images from the default theme will be used.
  38. if this is 'defaults', images from the default theme will only be used with default templates.
  39. if this is 'never' or isn't set at all, images from the default theme will not be used. */
  40. $settings['use_default_images'] = 'never';
  41. /* What document type definition is being used? (for font size and other issues.)
  42. 'xhtml' for an XHTML 1.0 document type definition.
  43. 'html' for an HTML 4.01 document type definition. */
  44. $settings['doctype'] = 'xhtml';
  45. // The version this template/theme is for. This should probably be the version of SMF it was created for.
  46. $settings['theme_version'] = '2.0';
  47. // Set a setting that tells the theme that it can render the tabs.
  48. $settings['use_tabs'] = true;
  49. // Use plain buttons - as opposed to text buttons?
  50. $settings['use_buttons'] = true;
  51. // Show sticky and lock status separate from topic icons?
  52. $settings['separate_sticky_lock'] = true;
  53. // Does this theme use the strict doctype?
  54. $settings['strict_doctype'] = false;
  55. // Set the following variable to true if this theme requires the optional theme strings file to be loaded.
  56. $settings['require_theme_strings'] = false;
  57. }
  58. /**
  59. * The main sub template above the content.
  60. */
  61. function template_html_above()
  62. {
  63. global $context, $settings, $options, $scripturl, $txt, $modSettings;
  64. // Show right to left and the character set for ease of translating.
  65. echo '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  66. <html xmlns="http://www.w3.org/1999/xhtml"', $context['right_to_left'] ? ' dir="rtl"' : '', '>
  67. <head>';
  68. // The ?alp21 part of this link is just here to make sure browsers don't cache it wrongly.
  69. echo '
  70. <link rel="stylesheet" type="text/css" href="', $settings['theme_url'], '/css/index.css?alp21" />';
  71. // The most efficient way of writing multi themes is to use a master index.css plus variant.css files.
  72. if (!empty($context['theme_variant']))
  73. echo '
  74. <link rel="stylesheet" type="text/css" href="', $settings['theme_url'], '/css/index', $context['theme_variant'], '.css?alp21" />';
  75. // RTL languages require an additional stylesheet.
  76. if ($context['right_to_left'])
  77. {
  78. echo '
  79. <link rel="stylesheet" type="text/css" href="', $settings['theme_url'], '/css/rtl.css?alp21" />';
  80. if (!empty($context['theme_variant']))
  81. echo '
  82. <link rel="stylesheet" type="text/css" href="', $settings['theme_url'], '/css/rtl', $context['theme_variant'], '.css?alp21" />';
  83. }
  84. // Load in any css from mods
  85. template_css();
  86. // Load in default Javascript variables as well as stuff added by mods (new in 2.1, so themers won't have to bother with it)
  87. template_javascript();
  88. echo '
  89. <meta http-equiv="Content-Type" content="text/html; charset=', $context['character_set'], '" />
  90. <meta name="description" content="', $context['page_title_html_safe'], '" />', !empty($context['meta_keywords']) ? '
  91. <meta name="keywords" content="' . $context['meta_keywords'] . '" />' : '', '
  92. <title>', $context['page_title_html_safe'], '</title>';
  93. // Please don't index these Mr Robot.
  94. if (!empty($context['robot_no_index']))
  95. echo '
  96. <meta name="robots" content="noindex" />';
  97. // Present a canonical url for search engines to prevent duplicate content in their indices.
  98. if (!empty($context['canonical_url']))
  99. echo '
  100. <link rel="canonical" href="', $context['canonical_url'], '" />';
  101. // Show all the relative links, such as help, search, contents, and the like.
  102. echo '
  103. <link rel="help" href="', $scripturl, '?action=help" />
  104. <link rel="contents" href="', $scripturl, '" />', ($context['allow_search'] ? '
  105. <link rel="search" href="' . $scripturl . '?action=search" />' : '');
  106. // If RSS feeds are enabled, advertise the presence of one.
  107. if (!empty($modSettings['xmlnews_enable']) && (!empty($modSettings['allow_guestAccess']) || $context['user']['is_logged']))
  108. echo '
  109. <link rel="alternate" type="application/rss+xml" title="', $context['forum_name_html_safe'], ' - ', $txt['rss'], '" href="', $scripturl, '?type=rss2;action=.xml" />
  110. <link rel="alternate" type="application/rss+xml" title="', $context['forum_name_html_safe'], ' - ', $txt['atom'], '" href="', $scripturl, '?type=atom;action=.xml" />';
  111. // If we're viewing a topic, these should be the previous and next topics, respectively.
  112. if (!empty($context['links']['next']))
  113. echo '<link rel="next" href="', $context['links']['next'], '" />';
  114. else if (!empty($context['current_topic']))
  115. echo '<link rel="next" href="', $scripturl, '?topic=', $context['current_topic'], '.0;prev_next=next" />';
  116. if (!empty($context['links']['prev']))
  117. echo '<link rel="prev" href="', $context['links']['prev'], '" />';
  118. else if (!empty($context['current_topic']))
  119. echo '<link rel="prev" href="', $scripturl, '?topic=', $context['current_topic'], '.0;prev_next=prev" />';
  120. // If we're in a board, or a topic for that matter, the index will be the board's index.
  121. if (!empty($context['current_board']))
  122. echo '
  123. <link rel="index" href="', $scripturl, '?board=', $context['current_board'], '.0" />';
  124. // Output any remaining HTML headers. (from mods, maybe?)
  125. echo $context['html_headers'];
  126. echo '
  127. </head>
  128. <body id="', $context['browser_body_id'], '" class="action_', !empty($context['current_action']) ? htmlspecialchars($context['current_action']) : (!empty($context['current_board']) ?
  129. 'messageindex' : (!empty($context['current_topic']) ? 'display' : 'home')), !empty($context['current_board']) ? ' board_' . htmlspecialchars($context['current_board']) : '', '">';
  130. }
  131. function template_body_above()
  132. {
  133. global $context, $settings, $options, $scripturl, $txt, $modSettings;
  134. // Wrapper div now echoes permanently for better layout options. h1 a is now target for "Go up" links.
  135. echo '
  136. <div id="wrapper" ', !empty($settings['forum_width']) ? 'style="width: ' . $settings['forum_width'] . '"' : '', '>
  137. <div id="header">
  138. <div class="frame">
  139. <div id="top_section">
  140. <h1 class="forumtitle">
  141. <a href="', $scripturl, '" id="top">', empty($context['header_logo_url_html_safe']) ? $context['forum_name'] : '<img src="' . $context['header_logo_url_html_safe'] . '" alt="' . $context['forum_name'] . '" />', '</a>
  142. </h1>';
  143. // the upshrink image, right-floated
  144. echo '
  145. <img id="upshrink" src="', $settings['images_url'], '/upshrink.png" alt="*" title="', $txt['upshrink_description'], '" style="display: none;" />';
  146. echo '
  147. ', empty($settings['site_slogan']) ? '<img id="smflogo" src="' . $settings['images_url'] . '/smflogo.png" alt="Simple Machines Forum" title="Simple Machines Forum" />' : '<div id="siteslogan" class="floatright">' . $settings['site_slogan'] . '</div>', '
  148. </div>
  149. <div id="upper_wrap">
  150. <div id="upper_section" ', empty($options['collapse_header']) ? '' : ' style="display: none;"', '>
  151. <div class="user">';
  152. // If the user is logged in, display stuff like their name, new messages, etc.
  153. if ($context['user']['is_logged'])
  154. {
  155. if (!empty($context['user']['avatar']))
  156. echo '
  157. <p class="avatar"><a href="', $scripturl, '?action=profile">', $context['user']['avatar']['image'], '</a></p>';
  158. echo '
  159. <ul class="reset">
  160. <li class="greeting">', $txt['hello_member_ndt'], ' <span>', $context['user']['name'], '</span></li>
  161. <li><a href="', $scripturl, '?action=unread">', $txt['unread_since_visit'], '</a></li>
  162. <li><a href="', $scripturl, '?action=unreadreplies">', $txt['show_unread_replies'], '</a></li>';
  163. // Is the forum in maintenance mode?
  164. if ($context['in_maintenance'] && $context['user']['is_admin'])
  165. echo '
  166. <li class="notice">', $txt['maintain_mode_on'], '</li>';
  167. // Are there any members waiting for approval?
  168. if (!empty($context['unapproved_members']))
  169. echo '
  170. <li>', $context['unapproved_members'] == 1 ? $txt['approve_thereis'] : $txt['approve_thereare'], ' <a href="', $scripturl, '?action=admin;area=viewmembers;sa=browse;type=approve">', $context['unapproved_members'] == 1 ? $txt['approve_member'] : $context['unapproved_members'] . ' ' . $txt['approve_members'], '</a> ', $txt['approve_members_waiting'], '</li>';
  171. if (!empty($context['open_mod_reports']) && $context['show_open_reports'])
  172. echo '
  173. <li><a href="', $scripturl, '?action=moderate;area=reports">', sprintf($txt['mod_reports_waiting'], $context['open_mod_reports']), '</a></li>';
  174. echo '
  175. <li>', $context['current_time'], '</li>
  176. </ul>';
  177. }
  178. // Otherwise they're a guest - this time ask them to either register or login - lazy bums...
  179. elseif (!empty($context['show_login_bar']))
  180. {
  181. echo '
  182. <script type="text/javascript" src="', $settings['default_theme_url'], '/scripts/sha1.js"></script>
  183. <form id="guest_form" action="', $scripturl, '?action=login2;quicklogin" method="post" accept-charset="', $context['character_set'], '" ', empty($context['disable_login_hashing']) ? ' onsubmit="hashLoginPassword(this, \'' . $context['session_id'] . '\');"' : '', '>
  184. <div class="info">', sprintf($txt[$context['can_register'] ? 'welcome_guest_register' : 'welcome_guest'], $txt['guest_title'], $scripturl . '?action=login'), '</div>
  185. <input type="text" name="user" size="10" class="input_text" />
  186. <input type="password" name="passwrd" size="10" class="input_password" />
  187. <select name="cookielength">
  188. <option value="60">', $txt['one_hour'], '</option>
  189. <option value="1440">', $txt['one_day'], '</option>
  190. <option value="10080">', $txt['one_week'], '</option>
  191. <option value="43200">', $txt['one_month'], '</option>
  192. <option value="-1" selected="selected">', $txt['forever'], '</option>
  193. </select>
  194. <input type="submit" value="', $txt['login'], '" class="button_submit" /><br />
  195. <div class="info">', $txt['quick_login_dec'], '</div>';
  196. if (!empty($modSettings['enableOpenID']))
  197. echo '
  198. <br /><input type="text" name="openid_identifier" size="25" class="input_text openid_login" />';
  199. echo '
  200. <input type="hidden" name="hash_passwrd" value="" />
  201. <input type="hidden" name="', $context['session_var'], '" value="', $context['session_id'], '" />
  202. <input type="hidden" name="', $context['login_token_var'], '" value="', $context['login_token'], '" />
  203. </form>';
  204. }
  205. echo '
  206. </div>
  207. <div class="news">';
  208. if ($context['allow_search'])
  209. {
  210. echo '
  211. <form id="search_form" action="', $scripturl, '?action=search2" method="post" accept-charset="', $context['character_set'], '">
  212. <input type="text" name="search" value="" class="input_text" />&nbsp;';
  213. // Using the quick search dropdown?
  214. if (!empty($modSettings['search_dropdown']))
  215. {
  216. $selected = !empty($context['current_topic']) ? 'current_topic' : (!empty($context['current_board']) ? 'current_board' : 'all');
  217. echo '
  218. <select name="search_selection">
  219. <option value="all"', ($selected == 'all' ? ' selected="selected"' : ''), '>', $txt['search_entireforum'], ' </option>';
  220. // Can't limit it to a specific topic if we are not in one
  221. if (!empty($context['current_topic']))
  222. echo '
  223. <option value="topic"', ($selected == 'current_topic' ? ' selected="selected"' : ''), '>', $txt['search_thistopic'], '</option>';
  224. // Can't limit it to a specific board if we are not in one
  225. if (!empty($context['current_board']))
  226. echo '
  227. <option value="board"', ($selected == 'current_board' ? ' selected="selected"' : ''), '>', $txt['search_thisbrd'], '</option>';
  228. echo '
  229. <option value="members"', ($selected == 'members' ? ' selected="selected"' : ''), '>', $txt['search_members'], ' </option>
  230. </select>';
  231. }
  232. // Search within current topic?
  233. if (!empty($context['current_topic']))
  234. echo '
  235. <input type="hidden" name="', (!empty($modSettings['search_dropdown']) ? 'sd_topic' : 'topic'), '" value="', $context['current_topic'], '" />';
  236. // If we're on a certain board, limit it to this board ;).
  237. elseif (!empty($context['current_board']))
  238. echo '
  239. <input type="hidden" name="', (!empty($modSettings['search_dropdown']) ? 'sd_brd[' : 'brd['), $context['current_board'], ']"', ' value="', $context['current_board'], '" />';
  240. echo '
  241. <input type="submit" name="search2" value="', $txt['search'], '" class="button_submit" />
  242. <input type="hidden" name="advanced" value="0" />
  243. </form>';
  244. }
  245. // Show a random news item? (or you could pick one from news_lines...)
  246. if (!empty($settings['enable_news']))
  247. echo '
  248. <h2>', $txt['news'], ': </h2>
  249. <p>', $context['random_news_line'], '</p>';
  250. echo '
  251. </div>
  252. </div>';
  253. // Define the upper_section toggle in JavaScript.
  254. echo '
  255. <script type="text/javascript"><!-- // --><![CDATA[
  256. var oMainHeaderToggle = new smc_Toggle({
  257. bToggleEnabled: true,
  258. bCurrentlyCollapsed: ', empty($options['collapse_header']) ? 'false' : 'true', ',
  259. aSwappableContainers: [
  260. \'upper_section\'
  261. ],
  262. aSwapImages: [
  263. {
  264. sId: \'upshrink\',
  265. srcExpanded: smf_images_url + \'/upshrink.png\',
  266. altExpanded: ', JavaScriptEscape($txt['upshrink_description']), ',
  267. srcCollapsed: smf_images_url + \'/upshrink2.png\',
  268. altCollapsed: ', JavaScriptEscape($txt['upshrink_description']), '
  269. }
  270. ],
  271. oThemeOptions: {
  272. bUseThemeSettings: smf_member_id == 0 ? false : true,
  273. sOptionName: \'collapse_header\',
  274. sSessionVar: smf_session_var,
  275. sSessionId: smf_session_id
  276. },
  277. oCookieOptions: {
  278. bUseCookie: smf_member_id == 0 ? true : false,
  279. sCookieName: \'upshrink\'
  280. }
  281. });
  282. // ]]></script>';
  283. // Show the menu here, according to the menu sub template.
  284. template_menu();
  285. // Custom banners and shoutboxes should be placed here, before the linktree.
  286. // Show the navigation tree.
  287. theme_linktree();
  288. echo '
  289. </div>
  290. </div>
  291. </div>';
  292. // The main content should go here.
  293. echo '
  294. <div id="content_section">
  295. <div id="main_content_section">';
  296. }
  297. function template_body_below()
  298. {
  299. global $context, $settings, $options, $scripturl, $txt, $modSettings;
  300. echo '
  301. </div>
  302. </div>';
  303. // This markup gives the looks of the Curve theme without huge images.
  304. // The new "Go Down" target is here. Any added content will display globally.
  305. echo '
  306. <div id="lower_section">
  307. <div class="frame"><a id="bot"></a></div>
  308. </div>
  309. </div>';
  310. // Show the "Powered by" and "Valid" logos, as well as the copyright. Remember, the copyright must be somewhere!
  311. // Footer is now full-width by default. Frame inside it will match theme wrapper width automatically.
  312. echo '
  313. <div id="footer_section">
  314. <div class="frame" ', !empty($settings['forum_width']) ? 'style="width: ' . $settings['forum_width'] . '"' : '', '>';
  315. // Thee is now a global "Go to top" link above the copyright.
  316. echo '
  317. <a href="#top" id="footer_uplink"><img src="', $settings['images_url'], '/upshrink.png" alt="*" title="', $txt['go_up'], '" /></a>
  318. <ul class="reset">
  319. <li class="copyright">', theme_copyright(), '</li>
  320. <li><a id="button_xhtml" href="http://validator.w3.org/check?uri=referer" target="_blank" class="new_win" title="', $txt['valid_xhtml'], '"><span>', $txt['xhtml'], '</span></a></li>
  321. ', !empty($modSettings['xmlnews_enable']) && (!empty($modSettings['allow_guestAccess']) || $context['user']['is_logged']) ? '<li><a id="button_rss" href="' . $scripturl . '?action=.xml;type=rss" class="new_win"><span>' . $txt['rss'] . '</span></a></li>' : '', '
  322. <li class="last"><a id="button_wap2" href="', $scripturl , '?wap2" class="new_win"><span>', $txt['wap2'], '</span></a></li>
  323. </ul>';
  324. // Show the load time?
  325. if ($context['show_load_time'])
  326. echo '
  327. <p>', $txt['page_created'], $context['load_time'], $txt['seconds_with'], $context['load_queries'], $txt['queries'], '</p>';
  328. echo '
  329. </div>
  330. </div>';
  331. }
  332. function template_html_below()
  333. {
  334. global $context, $settings, $options, $scripturl, $txt, $modSettings;
  335. template_javascript(true);
  336. echo '
  337. </body>
  338. </html>';
  339. }
  340. /**
  341. * Show a linktree. This is that thing that shows "My Community | General Category | General Discussion"..
  342. * @param bool $force_show = false
  343. */
  344. function theme_linktree($force_show = false)
  345. {
  346. global $context, $settings, $options, $shown_linktree, $scripturl, $txt;
  347. // If linktree is empty, just return - also allow an override.
  348. if (empty($context['linktree']) || (!empty($context['dont_default_linktree']) && !$force_show))
  349. return;
  350. echo '
  351. <div class="navigate_section">
  352. <ul>';
  353. // Each tree item has a URL and name. Some may have extra_before and extra_after.
  354. foreach ($context['linktree'] as $link_num => $tree)
  355. {
  356. echo '
  357. <li', ($link_num == count($context['linktree']) - 1) ? ' class="last"' : '', '>';
  358. // Show something before the link?
  359. if (isset($tree['extra_before']))
  360. echo $tree['extra_before'];
  361. // Show the link, including a URL if it should have one.
  362. echo $settings['linktree_link'] && isset($tree['url']) ? '
  363. <a href="' . $tree['url'] . '"><span>' . $tree['name'] . '</span></a>' : '<span>' . $tree['name'] . '</span>';
  364. // Show something after the link...?
  365. if (isset($tree['extra_after']))
  366. echo $tree['extra_after'];
  367. // Don't show a separator for the last one.
  368. if ($link_num != count($context['linktree']) - 1)
  369. echo ' &#187;';
  370. echo '
  371. </li>';
  372. }
  373. if ($context['user']['is_logged'])
  374. echo '
  375. <li class="unread_links">
  376. <a href="', $scripturl, '?action=unread" title="', $txt['unread_since_visit'], '">', $txt['view_unread_category'], '</a> -
  377. <a href="', $scripturl, '?action=unreadreplies" title="', $txt['show_unread_replies'], '">', $txt['unread_replies'], '</a>
  378. </li>';
  379. echo '
  380. </ul>
  381. </div>';
  382. $shown_linktree = true;
  383. }
  384. /**
  385. * Show the menu up top. Something like [home] [help] [profile] [logout]...
  386. */
  387. function template_menu()
  388. {
  389. global $context, $settings, $options, $scripturl, $txt;
  390. echo '
  391. <div id="main_menu">
  392. <ul class="dropmenu" id="menu_nav">';
  393. // Note: Menu markup has been cleaned up to remove unnecessary spans and classes.
  394. foreach ($context['menu_buttons'] as $act => $button)
  395. {
  396. echo '
  397. <li id="button_', $act, '">
  398. <a class="', $button['active_button'] ? 'active' : '', '" href="', $button['href'], '" ', isset($button['target']) ? 'target="' . $button['target'] . '"' : '', '>
  399. ', $button['title'], '
  400. </a>';
  401. if (!empty($button['sub_buttons']))
  402. {
  403. echo '
  404. <ul>';
  405. foreach ($button['sub_buttons'] as $childbutton)
  406. {
  407. echo '
  408. <li>
  409. <a href="', $childbutton['href'], '" ' , isset($childbutton['target']) ? 'target="' . $childbutton['target'] . '"' : '', '>
  410. ', $childbutton['title'], '
  411. </a>';
  412. // 3rd level menus :)
  413. if (!empty($childbutton['sub_buttons']))
  414. {
  415. echo '
  416. <ul>';
  417. foreach ($childbutton['sub_buttons'] as $grandchildbutton)
  418. echo '
  419. <li>
  420. <a href="', $grandchildbutton['href'], '" ' , isset($grandchildbutton['target']) ? 'target="' . $grandchildbutton['target'] . '"' : '', '>
  421. ', $grandchildbutton['title'], '
  422. </a>
  423. </li>';
  424. echo '
  425. </ul>';
  426. }
  427. echo '
  428. </li>';
  429. }
  430. echo '
  431. </ul>';
  432. }
  433. echo '
  434. </li>';
  435. }
  436. echo '
  437. </ul>
  438. </div>';
  439. }
  440. /**
  441. * Generate a strip of buttons.
  442. * @param array $button_strip
  443. * @param string $direction = ''
  444. * @param array $strip_options = array()
  445. */
  446. function template_button_strip($button_strip, $direction = '', $strip_options = array())
  447. {
  448. global $settings, $context, $txt, $scripturl;
  449. if (!is_array($strip_options))
  450. $strip_options = array();
  451. // List the buttons in reverse order for RTL languages.
  452. if ($context['right_to_left'])
  453. $button_strip = array_reverse($button_strip, true);
  454. // Create the buttons...
  455. $buttons = array();
  456. foreach ($button_strip as $key => $value)
  457. {
  458. if (!isset($value['test']) || !empty($context[$value['test']]))
  459. $buttons[] = '
  460. <li><a' . (isset($value['id']) ? ' id="button_strip_' . $value['id'] . '"' : '') . ' class="button_strip_' . $key . (isset($value['active']) ? ' active' : '') . '" href="' . $value['url'] . '"' . (isset($value['custom']) ? ' ' . $value['custom'] : '') . '><span>' . $txt[$value['text']] . '</span></a></li>';
  461. }
  462. // No buttons? No button strip either.
  463. if (empty($buttons))
  464. return;
  465. echo '
  466. <div class="buttonlist', !empty($direction) ? ' float' . $direction : '', '"', (empty($buttons) ? ' style="display: none;"' : ''), (!empty($strip_options['id']) ? ' id="' . $strip_options['id'] . '"': ''), '>
  467. <ul>',
  468. implode('', $buttons), '
  469. </ul>
  470. </div>';
  471. }
  472. ?>