PageRenderTime 57ms CodeModel.GetById 26ms RepoModel.GetById 0ms app.codeStats 0ms

/Themes/default/index.template.php

https://github.com/smf-portal/SMF2.1
PHP | 606 lines | 384 code | 98 blank | 124 comment | 56 complexity | ac39e3e9d5c2f12e26731d6ccfeb44fa MD5 | raw 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 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. // Set the following variable to true is this theme wants to display the avatar of the user that posted the last post on the board index and message index
  58. $settings['avatars_on_indexes'] = false;
  59. }
  60. /**
  61. * The main sub template above the content.
  62. */
  63. function template_html_above()
  64. {
  65. global $context, $settings, $options, $scripturl, $txt, $modSettings;
  66. // Show right to left and the character set for ease of translating.
  67. echo '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  68. <html xmlns="http://www.w3.org/1999/xhtml"', $context['right_to_left'] ? ' dir="rtl"' : '', '>
  69. <head>';
  70. // The ?alp21 part of this link is just here to make sure browsers don't cache it wrongly.
  71. echo '
  72. <link rel="stylesheet" type="text/css" href="', $settings['theme_url'], '/css/index.css?alp21" />';
  73. // The most efficient way of writing multi themes is to use a master index.css plus variant.css files.
  74. if (!empty($context['theme_variant']))
  75. echo '
  76. <link rel="stylesheet" type="text/css" href="', $settings['theme_url'], '/css/index', $context['theme_variant'], '.css?alp21" />';
  77. // Save some database hits, if a width for multiple wrappers is set in admin.
  78. if(!empty($settings['forum_width']))
  79. echo '
  80. <style type="text/css">#wrapper, .frame {width: ', $settings['forum_width'], ';}</style>';
  81. // Quick and dirty testing of RTL horrors. Remove before production build.
  82. //echo '
  83. //<link rel="stylesheet" type="text/css" href="', $settings['theme_url'], '/css/rtl.css?alp21" />';
  84. // load in any css from mods or themes so they can overwrite if wanted
  85. template_css();
  86. // load in any javascript files from mods and themes
  87. template_javascript();
  88. // RTL languages require an additional stylesheet.
  89. if ($context['right_to_left'])
  90. {
  91. echo '
  92. <link rel="stylesheet" type="text/css" href="', $settings['theme_url'], '/css/rtl.css?alp21" />';
  93. if (!empty($context['theme_variant']))
  94. echo '
  95. <link rel="stylesheet" type="text/css" href="', $settings['theme_url'], '/css/rtl', $context['theme_variant'], '.css?alp21" />';
  96. }
  97. echo '
  98. <meta http-equiv="Content-Type" content="text/html; charset=', $context['character_set'], '" />
  99. <meta name="description" content="', $context['page_title_html_safe'], '" />', !empty($context['meta_keywords']) ? '
  100. <meta name="keywords" content="' . $context['meta_keywords'] . '" />' : '', '
  101. <title>', $context['page_title_html_safe'], '</title>';
  102. // Please don't index these Mr Robot.
  103. if (!empty($context['robot_no_index']))
  104. echo '
  105. <meta name="robots" content="noindex" />';
  106. // Present a canonical url for search engines to prevent duplicate content in their indices.
  107. if (!empty($context['canonical_url']))
  108. echo '
  109. <link rel="canonical" href="', $context['canonical_url'], '" />';
  110. // Show all the relative links, such as help, search, contents, and the like.
  111. echo '
  112. <link rel="help" href="', $scripturl, '?action=help" />
  113. <link rel="contents" href="', $scripturl, '" />', ($context['allow_search'] ? '
  114. <link rel="search" href="' . $scripturl . '?action=search" />' : '');
  115. // If RSS feeds are enabled, advertise the presence of one.
  116. if (!empty($modSettings['xmlnews_enable']) && (!empty($modSettings['allow_guestAccess']) || $context['user']['is_logged']))
  117. echo '
  118. <link rel="alternate" type="application/rss+xml" title="', $context['forum_name_html_safe'], ' - ', $txt['rss'], '" href="', $scripturl, '?type=rss2;action=.xml" />
  119. <link rel="alternate" type="application/rss+xml" title="', $context['forum_name_html_safe'], ' - ', $txt['atom'], '" href="', $scripturl, '?type=atom;action=.xml" />';
  120. // If we're viewing a topic, these should be the previous and next topics, respectively.
  121. if (!empty($context['links']['next']))
  122. echo '<link rel="next" href="', $context['links']['next'], '" />';
  123. else if (!empty($context['current_topic']))
  124. echo '<link rel="next" href="', $scripturl, '?topic=', $context['current_topic'], '.0;prev_next=next" />';
  125. if (!empty($context['links']['prev']))
  126. echo '<link rel="prev" href="', $context['links']['prev'], '" />';
  127. else if (!empty($context['current_topic']))
  128. echo '<link rel="prev" href="', $scripturl, '?topic=', $context['current_topic'], '.0;prev_next=prev" />';
  129. // If we're in a board, or a topic for that matter, the index will be the board's index.
  130. if (!empty($context['current_board']))
  131. echo '
  132. <link rel="index" href="', $scripturl, '?board=', $context['current_board'], '.0" />';
  133. // Output any remaining HTML headers. (from mods, maybe?)
  134. echo $context['html_headers'];
  135. echo '
  136. </head>
  137. <body id="', $context['browser_body_id'], '" class="action_', !empty($context['current_action']) ? htmlspecialchars($context['current_action']) : (!empty($context['current_board']) ?
  138. 'messageindex' : (!empty($context['current_topic']) ? 'display' : 'home')), !empty($context['current_board']) ? ' board_' . htmlspecialchars($context['current_board']) : '', '">';
  139. }
  140. function template_body_above()
  141. {
  142. global $context, $settings, $options, $scripturl, $txt, $modSettings;
  143. // Wrapper div now echoes permanently for better layout options. h1 a is now target for "Go up" links.
  144. echo '
  145. <div id="top_section">
  146. <div class="frame">
  147. <ul class="floatleft">';
  148. // If the user is logged in, display the time, or a maintenance warning for admins.
  149. if ($context['user']['is_logged'])
  150. {
  151. // Is the forum in maintenance mode?
  152. if ($context['in_maintenance'] && $context['user']['is_admin'])
  153. echo '
  154. <li class="notice">', $txt['maintain_mode_on'], '</li>';
  155. else
  156. echo '
  157. <li>', $context['current_time'], '</li>';
  158. }
  159. // Otherwise they're a guest. Ask them to either register or login.
  160. else
  161. echo '
  162. <li>', sprintf($txt[$context['can_register'] ? 'welcome_guest_register' : 'welcome_guest'], $txt['guest_title'], $scripturl . '?action=login'), '</li>';
  163. echo '
  164. </ul>';
  165. if ($context['allow_search'])
  166. {
  167. echo '
  168. <form id="search_form" class="floatright" action="', $scripturl, '?action=search2" method="post" accept-charset="', $context['character_set'], '">
  169. <input type="text" name="search" value="" class="input_text" />&nbsp;';
  170. // Using the quick search dropdown?
  171. if (!empty($modSettings['search_dropdown']))
  172. {
  173. $selected = !empty($context['current_topic']) ? 'current_topic' : (!empty($context['current_board']) ? 'current_board' : 'all');
  174. echo '
  175. <select name="search_selection">
  176. <option value="all"', ($selected == 'all' ? ' selected="selected"' : ''), '>', $txt['search_entireforum'], ' </option>';
  177. // Can't limit it to a specific topic if we are not in one
  178. if (!empty($context['current_topic']))
  179. echo '
  180. <option value="topic"', ($selected == 'current_topic' ? ' selected="selected"' : ''), '>', $txt['search_thistopic'], '</option>';
  181. // Can't limit it to a specific board if we are not in one
  182. if (!empty($context['current_board']))
  183. echo '
  184. <option value="board"', ($selected == 'current_board' ? ' selected="selected"' : ''), '>', $txt['search_thisbrd'], '</option>';
  185. echo '
  186. <option value="members"', ($selected == 'members' ? ' selected="selected"' : ''), '>', $txt['search_members'], ' </option>
  187. </select>';
  188. }
  189. // Search within current topic?
  190. if (!empty($context['current_topic']))
  191. echo '
  192. <input type="hidden" name="', (!empty($modSettings['search_dropdown']) ? 'sd_topic' : 'topic'), '" value="', $context['current_topic'], '" />';
  193. // If we're on a certain board, limit it to this board ;).
  194. elseif (!empty($context['current_board']))
  195. echo '
  196. <input type="hidden" name="', (!empty($modSettings['search_dropdown']) ? 'sd_brd[' : 'brd['), $context['current_board'], ']"', ' value="', $context['current_board'], '" />';
  197. echo '
  198. <input type="submit" name="search2" value="', $txt['search'], '" class="button_submit" />
  199. <input type="hidden" name="advanced" value="0" />
  200. </form>';
  201. }
  202. echo '
  203. </div>
  204. </div>';
  205. echo '
  206. <div id="header">
  207. <div class="frame">
  208. <h1 class="forumtitle">
  209. <a id="top" href="', $scripturl, '">', empty($context['header_logo_url_html_safe']) ? $context['forum_name'] : '<img src="' . $context['header_logo_url_html_safe'] . '" alt="' . $context['forum_name'] . '" />', '</a>
  210. </h1>';
  211. echo '
  212. ', 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>', '';
  213. echo'
  214. </div>
  215. </div>
  216. <div id="wrapper">
  217. <div id="upper_section">
  218. <div id="inner_section">
  219. <div id="inner_wrap" ', empty($options['collapse_header']) ? '' : ' style="display: none;"', '>
  220. <div class="user floatright">';
  221. // Otherwise they're a guest - this time ask them to either register or login - lazy bums...
  222. if (!empty($context['show_login_bar']))
  223. {
  224. echo '
  225. <script type="text/javascript" src="', $settings['default_theme_url'], '/scripts/sha1.js"></script>
  226. <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'] . '\', \'' . (!empty($context['login_token']) ? $context['login_token'] : '') . '\');"' : '', '>
  227. <input type="text" name="user" size="10" class="input_text" />
  228. <input type="password" name="passwrd" size="10" class="input_password" />
  229. <select name="cookielength">
  230. <option value="60">', $txt['one_hour'], '</option>
  231. <option value="1440">', $txt['one_day'], '</option>
  232. <option value="10080">', $txt['one_week'], '</option>
  233. <option value="43200">', $txt['one_month'], '</option>
  234. <option value="-1" selected="selected">', $txt['forever'], '</option>
  235. </select>
  236. <input type="submit" value="', $txt['login'], '" class="button_submit" />
  237. <div>', $txt['quick_login_dec'], '</div>';
  238. if (!empty($modSettings['enableOpenID']))
  239. echo '
  240. <br /><input type="text" name="openid_identifier" size="25" class="input_text openid_login" />';
  241. echo '
  242. <input type="hidden" name="hash_passwrd" value="" />
  243. <input type="hidden" name="', $context['session_var'], '" value="', $context['session_id'], '" />
  244. <input type="hidden" name="', $context['login_token_var'], '" value="', $context['login_token'], '" />
  245. </form>';
  246. }
  247. // If the user is logged in, display stuff like their name, new messages, etc.
  248. if ($context['user']['is_logged'])
  249. {
  250. if (!empty($context['user']['avatar']))
  251. echo '
  252. <a href="', $scripturl, '?action=profile" class="avatar">', $context['user']['avatar']['image'], '</a>';
  253. echo '
  254. <ul>
  255. <li class="greeting">', $txt['hello_member_ndt'], ' <span>', $context['user']['name'], '</span></li>';
  256. // Are there any members waiting for approval?
  257. if (!empty($context['unapproved_members']))
  258. echo '
  259. <li>', $context['unapproved_members_text'], '</li>';
  260. if (!empty($context['open_mod_reports']) && $context['show_open_reports'])
  261. echo '
  262. <li><a href="', $scripturl, '?action=moderate;area=reports">', sprintf($txt['mod_reports_waiting'], $context['open_mod_reports']), '</a></li>';
  263. echo '
  264. </ul>';
  265. }
  266. echo'
  267. </div>';
  268. // Show a random news item? (or you could pick one from news_lines...)
  269. if (!empty($settings['enable_news']))
  270. echo '
  271. <div class="news">
  272. <h2>', $txt['news'], ': </h2>
  273. <p>', $context['random_news_line'], '</p>
  274. </div>';
  275. echo '
  276. <hr class="clear" />
  277. </div>';
  278. // Show the menu here, according to the menu sub template, followed by the navigation tree.
  279. template_menu();
  280. theme_linktree();
  281. echo '
  282. </div>
  283. </div>';
  284. // The main content should go here.
  285. echo '
  286. <div id="content_section">
  287. <div id="main_content_section">';
  288. }
  289. function template_body_below()
  290. {
  291. global $context, $settings, $options, $scripturl, $txt, $modSettings;
  292. echo '
  293. </div>
  294. </div>
  295. </div>';
  296. // Show the XHTML, RSS and WAP2 links, as well as the copyright.
  297. // Footer is now full-width by default. Frame inside it will match theme wrapper width automatically.
  298. echo '
  299. <div id="footer_section">
  300. <div class="frame">';
  301. // There is now a global "Go to top" link at the right.
  302. echo '
  303. <a href="#top" id="bot"><img src="', $settings['images_url'], '/upshrink.png" alt="*" title="', $txt['go_up'], '" /></a>
  304. <ul class="reset">
  305. <li class="copyright">', theme_copyright(), '</li>
  306. <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>
  307. ', !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>' : '', '
  308. <li class="last"><a id="button_wap2" href="', $scripturl , '?wap2" class="new_win"><span>', $txt['wap2'], '</span></a></li>
  309. </ul>';
  310. // Show the load time?
  311. if ($context['show_load_time'])
  312. echo '
  313. <p>', sprintf($txt['page_created_full'], $context['load_time'], $context['load_queries']), '</p>';
  314. echo '
  315. </div>
  316. </div>';
  317. }
  318. function template_html_below()
  319. {
  320. global $context, $settings, $options, $scripturl, $txt, $modSettings;
  321. // load in any javascipt that could be defered to the end of the page
  322. template_javascript(true);
  323. echo '
  324. </body>
  325. </html>';
  326. }
  327. /**
  328. * Show a linktree. This is that thing that shows "My Community | General Category | General Discussion"..
  329. * @param bool $force_show = false
  330. */
  331. function theme_linktree($force_show = false)
  332. {
  333. global $context, $settings, $options, $shown_linktree, $scripturl, $txt;
  334. // If linktree is empty, just return - also allow an override.
  335. if (empty($context['linktree']) || (!empty($context['dont_default_linktree']) && !$force_show))
  336. return;
  337. echo '
  338. <div class="navigate_section">
  339. <ul>';
  340. if ($context['user']['is_logged'])
  341. echo '
  342. <li class="unread_links">
  343. <a href="', $scripturl, '?action=unread" title="', $txt['unread_since_visit'], '">', $txt['view_unread_category'], '</a>
  344. <a href="', $scripturl, '?action=unreadreplies" title="', $txt['show_unread_replies'], '">', $txt['unread_replies'], '</a>
  345. </li>';
  346. // Each tree item has a URL and name. Some may have extra_before and extra_after.
  347. foreach ($context['linktree'] as $link_num => $tree)
  348. {
  349. echo '
  350. <li', ($link_num == count($context['linktree']) - 1) ? ' class="last"' : '', '>';
  351. // Don't show a separator for the first one.
  352. // Better here. Always points to the next level when the linktree breaks to a second line.
  353. // Picked a better looking HTML entity, and added support for RTL plus a span for styling.
  354. if ($link_num != 0)
  355. echo '
  356. <span class="dividers">', $context['right_to_left'] ? ' &#9668; ' : ' &#9658; ', '</span>';
  357. // Show something before the link?
  358. if (isset($tree['extra_before']))
  359. echo $tree['extra_before'];
  360. // Show the link, including a URL if it should have one.
  361. echo $settings['linktree_link'] && isset($tree['url']) ? '
  362. <a href="' . $tree['url'] . '"><span>' . $tree['name'] . '</span></a>' : '<span>' . $tree['name'] . '</span>';
  363. // Show something after the link...?
  364. if (isset($tree['extra_after']))
  365. echo $tree['extra_after'];
  366. echo '
  367. </li>';
  368. }
  369. echo '
  370. </ul>
  371. </div>';
  372. $shown_linktree = true;
  373. }
  374. /**
  375. * Show the menu up top. Something like [home] [help] [profile] [logout]...
  376. */
  377. function template_menu()
  378. {
  379. global $context, $settings, $options, $scripturl, $txt;
  380. echo '
  381. <div id="main_menu">
  382. <ul class="dropmenu" id="menu_nav">';
  383. // Note: Menu markup has been cleaned up to remove unnecessary spans and classes.
  384. foreach ($context['menu_buttons'] as $act => $button)
  385. {
  386. echo '
  387. <li id="button_', $act, '" ', !empty($button['sub_buttons']) ? 'class="subsections"' :'', '>
  388. <a class="', $button['active_button'] ? 'active' : '', '" href="', $button['href'], '" ', isset($button['target']) ? 'target="' . $button['target'] . '"' : '', '>
  389. ', $button['title'], '
  390. </a>';
  391. if (!empty($button['sub_buttons']))
  392. {
  393. echo '
  394. <ul>';
  395. foreach ($button['sub_buttons'] as $childbutton)
  396. {
  397. echo '
  398. <li ', !empty($childbutton['sub_buttons']) ? 'class="subsections"' :'', '>
  399. <a href="', $childbutton['href'], '" ' , isset($childbutton['target']) ? 'target="' . $childbutton['target'] . '"' : '', '>
  400. ', $childbutton['title'], '
  401. </a>';
  402. // 3rd level menus :)
  403. if (!empty($childbutton['sub_buttons']))
  404. {
  405. echo '
  406. <ul>';
  407. foreach ($childbutton['sub_buttons'] as $grandchildbutton)
  408. echo '
  409. <li>
  410. <a href="', $grandchildbutton['href'], '" ' , isset($grandchildbutton['target']) ? 'target="' . $grandchildbutton['target'] . '"' : '', '>
  411. ', $grandchildbutton['title'], '
  412. </a>
  413. </li>';
  414. echo '
  415. </ul>';
  416. }
  417. echo '
  418. </li>';
  419. }
  420. echo '
  421. </ul>';
  422. }
  423. echo '
  424. </li>';
  425. }
  426. // The upshrink image, right-floated. Yes, I know it takes some space from the menu bar.
  427. // Menu bar will still accommodate ten buttons on a 1024, with theme set to 90%. That's more than enough.
  428. // If anyone is terrified of losing 40px out of the menu bar, set your theme to 92% instead of 90%. :P
  429. echo '
  430. <li id="collapse_button">
  431. <img id="upshrink" src="', $settings['images_url'], '/upshrink.png" alt="*" title="', $txt['upshrink_description'], '" style="padding: 4px 9px 3px 9px; display: none;" />
  432. </li>';
  433. echo '
  434. </ul>
  435. </div>';
  436. // Define the upper_section toggle in JavaScript.
  437. // Note that this definition had to be shifted for the js to work with the new markup.
  438. echo '
  439. <script type="text/javascript"><!-- // --><![CDATA[
  440. var oMainHeaderToggle = new smc_Toggle({
  441. bToggleEnabled: true,
  442. bCurrentlyCollapsed: ', empty($options['collapse_header']) ? 'false' : 'true', ',
  443. aSwappableContainers: [
  444. \'inner_wrap\'
  445. ],
  446. aSwapImages: [
  447. {
  448. sId: \'upshrink\',
  449. srcExpanded: smf_images_url + \'/upshrink.png\',
  450. altExpanded: ', JavaScriptEscape($txt['upshrink_description']), ',
  451. srcCollapsed: smf_images_url + \'/upshrink2.png\',
  452. altCollapsed: ', JavaScriptEscape($txt['upshrink_description']), '
  453. }
  454. ],
  455. oThemeOptions: {
  456. bUseThemeSettings: smf_member_id == 0 ? false : true,
  457. sOptionName: \'collapse_header\',
  458. sSessionVar: smf_session_var,
  459. sSessionId: smf_session_id
  460. },
  461. oCookieOptions: {
  462. bUseCookie: smf_member_id == 0 ? true : false,
  463. sCookieName: \'upshrink\'
  464. }
  465. });
  466. // ]]></script>';
  467. }
  468. /**
  469. * Generate a strip of buttons.
  470. * @param array $button_strip
  471. * @param string $direction = ''
  472. * @param array $strip_options = array()
  473. */
  474. function template_button_strip($button_strip, $direction = '', $strip_options = array())
  475. {
  476. global $settings, $context, $txt, $scripturl;
  477. if (!is_array($strip_options))
  478. $strip_options = array();
  479. // List the buttons in reverse order for RTL languages.
  480. if ($context['right_to_left'])
  481. $button_strip = array_reverse($button_strip, true);
  482. // Create the buttons...
  483. $buttons = array();
  484. foreach ($button_strip as $key => $value)
  485. {
  486. // @todo this check here doesn't make much sense now (from 2.1 on), it should be moved to where the button array is generated
  487. // Kept for backward compatibility
  488. if (!isset($value['test']) || !empty($context[$value['test']]))
  489. $buttons[] = '
  490. <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>';
  491. }
  492. // No buttons? No button strip either.
  493. if (empty($buttons))
  494. return;
  495. echo '
  496. <div class="buttonlist', !empty($direction) ? ' float' . $direction : '', '"', (empty($buttons) ? ' style="display: none;"' : ''), (!empty($strip_options['id']) ? ' id="' . $strip_options['id'] . '"': ''), '>
  497. <ul>',
  498. implode('', $buttons), '
  499. </ul>
  500. </div>';
  501. }
  502. ?>