index.template.php 24 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639
  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', $context['theme_variant'], '.css?alp21" />';
  71. // Some browsers need an extra stylesheet due to bugs/compatibility issues.
  72. foreach (array('ie7', 'ie6', 'webkit') as $cssfix)
  73. if ($context['browser']['is_' . $cssfix])
  74. echo '
  75. <link rel="stylesheet" type="text/css" href="', $settings['default_theme_url'], '/css/', $cssfix, '.css" />';
  76. // RTL languages require an additional stylesheet.
  77. if ($context['right_to_left'])
  78. echo '
  79. <link rel="stylesheet" type="text/css" href="', $settings['theme_url'], '/css/rtl.css" />';
  80. // load in any css from mods or themes so they can overwrite if wanted
  81. template_css();
  82. // Jquery Librarys
  83. if (isset($modSettings['jquery_source']) && $modSettings['jquery_source'] == 'cdn')
  84. echo '
  85. <script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>';
  86. elseif (isset($modSettings['jquery_source']) && $modSettings['jquery_source'] == 'local')
  87. echo '
  88. <script type="text/javascript" src="', $settings['theme_url'], '/scripts/jquery-1.7.1.min.js"></script>';
  89. else
  90. echo '
  91. <script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
  92. <script type="text/javascript"><!-- // --><![CDATA[
  93. window.jQuery || document.write(\'<script src="', $settings['theme_url'], '/scripts/jquery-1.7.1.min.js"><\/script>\');
  94. // ]]></script>';
  95. // Note that the Superfish function seems to like being called by the full syntax.
  96. // It doesn't appear to like being called by short syntax. Please test if contemplating changes.
  97. echo '
  98. <script type="text/javascript" src="', $settings['theme_url'], '/scripts/smf_jquery_plugins.js"></script>';
  99. // Here comes the JavaScript bits!
  100. echo '
  101. <script type="text/javascript" src="', $settings['default_theme_url'], '/scripts/script.js?alp21"></script>
  102. <script type="text/javascript" src="', $settings['theme_url'], '/scripts/theme.js?alp21"></script>
  103. <script type="text/javascript"><!-- // --><![CDATA[
  104. var smf_theme_url = "', $settings['theme_url'], '";
  105. var smf_default_theme_url = "', $settings['default_theme_url'], '";
  106. var smf_images_url = "', $settings['images_url'], '";
  107. var smf_scripturl = "', $scripturl, '";
  108. var smf_iso_case_folding = ', $context['server']['iso_case_folding'] ? 'true' : 'false', ';
  109. var smf_charset = "', $context['character_set'], '";
  110. var smf_session_id = "', $context['session_id'], '";
  111. var smf_session_var = "', $context['session_var'], '";
  112. var smf_member_id = "', $context['user']['id'], '";', $context['show_pm_popup'] ? '
  113. var fPmPopup = function ()
  114. {
  115. if (confirm("' . $txt['show_personal_messages'] . '"))
  116. window.open(smf_prepareScriptUrl(smf_scripturl) + "action=pm");
  117. }
  118. addLoadEvent(fPmPopup);' : '', '
  119. var ajax_notification_text = "', $txt['ajax_in_progress'], '";
  120. var ajax_notification_cancel_text = "', $txt['modify_cancel'], '";
  121. // ]]></script>';
  122. echo '
  123. <script type="text/javascript"><!-- // --><![CDATA[
  124. $(document).ready(function() {
  125. // menu drop downs
  126. $("ul.dropmenu").superfish();
  127. // tooltips
  128. $(".preview").SMFtooltip();
  129. // find all nested linked images and turn off the border
  130. $("a.bbc_link img.bbc_img").parent().css("border", "0");
  131. });
  132. // ]]></script>';
  133. // load in any javascript files from mods and themes
  134. template_javascript();
  135. echo '
  136. <meta http-equiv="Content-Type" content="text/html; charset=', $context['character_set'], '" />
  137. <meta name="description" content="', $context['page_title_html_safe'], '" />', !empty($context['meta_keywords']) ? '
  138. <meta name="keywords" content="' . $context['meta_keywords'] . '" />' : '', '
  139. <title>', $context['page_title_html_safe'], '</title>';
  140. // Please don't index these Mr Robot.
  141. if (!empty($context['robot_no_index']))
  142. echo '
  143. <meta name="robots" content="noindex" />';
  144. // Present a canonical url for search engines to prevent duplicate content in their indices.
  145. if (!empty($context['canonical_url']))
  146. echo '
  147. <link rel="canonical" href="', $context['canonical_url'], '" />';
  148. // Show all the relative links, such as help, search, contents, and the like.
  149. echo '
  150. <link rel="help" href="', $scripturl, '?action=help" />
  151. <link rel="contents" href="', $scripturl, '" />', ($context['allow_search'] ? '
  152. <link rel="search" href="' . $scripturl . '?action=search" />' : '');
  153. // If RSS feeds are enabled, advertise the presence of one.
  154. if (!empty($modSettings['xmlnews_enable']) && (!empty($modSettings['allow_guestAccess']) || $context['user']['is_logged']))
  155. echo '
  156. <link rel="alternate" type="application/rss+xml" title="', $context['forum_name_html_safe'], ' - ', $txt['rss'], '" href="', $scripturl, '?type=rss2;action=.xml" />
  157. <link rel="alternate" type="application/rss+xml" title="', $context['forum_name_html_safe'], ' - ', $txt['atom'], '" href="', $scripturl, '?type=atom;action=.xml" />';
  158. // If we're viewing a topic, these should be the previous and next topics, respectively.
  159. if (!empty($context['current_topic']))
  160. echo '
  161. <link rel="prev" href="', $scripturl, '?topic=', $context['current_topic'], '.0;prev_next=prev" />
  162. <link rel="next" href="', $scripturl, '?topic=', $context['current_topic'], '.0;prev_next=next" />';
  163. // If we're in a board, or a topic for that matter, the index will be the board's index.
  164. if (!empty($context['current_board']))
  165. echo '
  166. <link rel="index" href="', $scripturl, '?board=', $context['current_board'], '.0" />';
  167. // Output any remaining HTML headers. (from mods, maybe?)
  168. echo $context['html_headers'];
  169. echo '
  170. </head>
  171. <body id="', $context['browser_body_id'], '" class="action_', !empty($context['current_action']) ? htmlspecialchars($context['current_action']) : (!empty($context['current_board']) ? 'messageindex' : (!empty($context['current_topic']) ? 'display' : 'home')),
  172. !empty($context['current_board']) ? ' board_' . htmlspecialchars($context['current_board']) : '',
  173. '">';
  174. }
  175. function template_body_above()
  176. {
  177. global $context, $settings, $options, $scripturl, $txt, $modSettings;
  178. echo !empty($settings['forum_width']) ? '
  179. <div id="wrapper" style="width: ' . $settings['forum_width'] . '">' : '', '
  180. <div id="header"><div class="frame">
  181. <div id="top_section">
  182. <h1 class="forumtitle">
  183. <a 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>
  184. </h1>';
  185. // the upshrink image, right-floated
  186. echo '
  187. <img id="upshrink" src="', $settings['images_url'], '/upshrink.png" alt="*" title="', $txt['upshrink_description'], '" style="display: none;" />';
  188. echo '
  189. ', 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>', '
  190. </div>
  191. <div id="upper_section" class="middletext"', empty($options['collapse_header']) ? '' : ' style="display: none;"', '>
  192. <div class="user">';
  193. // If the user is logged in, display stuff like their name, new messages, etc.
  194. if ($context['user']['is_logged'])
  195. {
  196. if (!empty($context['user']['avatar']))
  197. echo '
  198. <p class="avatar">', $context['user']['avatar']['image'], '</p>';
  199. echo '
  200. <ul class="reset">
  201. <li class="greeting">', $txt['hello_member_ndt'], ' <span>', $context['user']['name'], '</span></li>
  202. <li><a href="', $scripturl, '?action=unread">', $txt['unread_since_visit'], '</a></li>
  203. <li><a href="', $scripturl, '?action=unreadreplies">', $txt['show_unread_replies'], '</a></li>';
  204. // Is the forum in maintenance mode?
  205. if ($context['in_maintenance'] && $context['user']['is_admin'])
  206. echo '
  207. <li class="notice">', $txt['maintain_mode_on'], '</li>';
  208. // Are there any members waiting for approval?
  209. if (!empty($context['unapproved_members']))
  210. echo '
  211. <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>';
  212. if (!empty($context['open_mod_reports']) && $context['show_open_reports'])
  213. echo '
  214. <li><a href="', $scripturl, '?action=moderate;area=reports">', sprintf($txt['mod_reports_waiting'], $context['open_mod_reports']), '</a></li>';
  215. echo '
  216. <li>', $context['current_time'], '</li>
  217. </ul>';
  218. }
  219. // Otherwise they're a guest - this time ask them to either register or login - lazy bums...
  220. elseif (!empty($context['show_login_bar']))
  221. {
  222. echo '
  223. <script type="text/javascript" src="', $settings['default_theme_url'], '/scripts/sha1.js"></script>
  224. <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'] . '\');"' : '', '>
  225. <div class="info">', sprintf($txt[$context['can_register'] ? 'welcome_guest_register' : 'welcome_guest'], $txt['guest_title'], $scripturl . '?action=login'), '</div>
  226. <input type="text" name="user" size="10" class="input_text" />
  227. <input type="password" name="passwrd" size="10" class="input_password" />
  228. <select name="cookielength">
  229. <option value="60">', $txt['one_hour'], '</option>
  230. <option value="1440">', $txt['one_day'], '</option>
  231. <option value="10080">', $txt['one_week'], '</option>
  232. <option value="43200">', $txt['one_month'], '</option>
  233. <option value="-1" selected="selected">', $txt['forever'], '</option>
  234. </select>
  235. <input type="submit" value="', $txt['login'], '" class="button_submit" /><br />
  236. <div class="info">', $txt['quick_login_dec'], '</div>';
  237. if (!empty($modSettings['enableOpenID']))
  238. echo '
  239. <br /><input type="text" name="openid_identifier" size="25" class="input_text openid_login" />';
  240. echo '
  241. <input type="hidden" name="hash_passwrd" value="" />
  242. <input type="hidden" name="', $context['session_var'], '" value="', $context['session_id'], '" />
  243. <input type="hidden" name="', $context['login_token_var'], '" value="', $context['login_token'], '" />
  244. </form>';
  245. }
  246. echo '
  247. </div>
  248. <div class="news normaltext">';
  249. if ($context['allow_search'])
  250. {
  251. echo '
  252. <form id="search_form" action="', $scripturl, '?action=search2" method="post" accept-charset="', $context['character_set'], '">
  253. <input type="text" name="search" value="" class="input_text" />&nbsp;';
  254. // Using the quick search dropdown?
  255. if (!empty($modSettings['search_dropdown']))
  256. {
  257. $selected = !empty($context['current_topic']) ? 'current_topic' : (!empty($context['current_board']) ? 'current_board' : 'all');
  258. echo '
  259. <select name="search_selection">
  260. <option value="all"', ($selected == 'all' ? ' selected="selected"' : ''), '>', $txt['search_entireforum'], ' </option>';
  261. // Can't limit it to a specific topic if we are not in one
  262. if (!empty($context['current_topic']))
  263. echo '
  264. <option value="topic"', ($selected == 'current_topic' ? ' selected="selected"' : ''), '>', $txt['search_thistopic'], '</option>';
  265. // Can't limit it to a specific board if we are not in one
  266. if (!empty($context['current_board']))
  267. echo '
  268. <option value="board"', ($selected == 'current_board' ? ' selected="selected"' : ''), '>', $txt['search_thisbrd'], '</option>';
  269. echo '
  270. <option value="members"', ($selected == 'members' ? ' selected="selected"' : ''), '>', $txt['search_members'], ' </option>
  271. </select>';
  272. }
  273. // Search within current topic?
  274. if (!empty($context['current_topic']))
  275. echo '
  276. <input type="hidden" name="', (!empty($modSettings['search_dropdown']) ? 'sd_topic' : 'topic'), '" value="', $context['current_topic'], '" />';
  277. // If we're on a certain board, limit it to this board ;).
  278. elseif (!empty($context['current_board']))
  279. echo '
  280. <input type="hidden" name="', (!empty($modSettings['search_dropdown']) ? 'sd_brd[' : 'brd['), $context['current_board'], ']"', ' value="', $context['current_board'], '" />';
  281. echo '
  282. <input type="submit" name="search2" value="', $txt['search'], '" class="button_submit" />
  283. <input type="hidden" name="advanced" value="0" />
  284. </form>';
  285. }
  286. // Show a random news item? (or you could pick one from news_lines...)
  287. if (!empty($settings['enable_news']))
  288. echo '
  289. <h2>', $txt['news'], ': </h2>
  290. <p>', $context['random_news_line'], '</p>';
  291. echo '
  292. </div>
  293. </div>
  294. <br class="clear" />';
  295. // Define the upper_section toggle in JavaScript.
  296. echo '
  297. <script type="text/javascript"><!-- // --><![CDATA[
  298. var oMainHeaderToggle = new smc_Toggle({
  299. bToggleEnabled: true,
  300. bCurrentlyCollapsed: ', empty($options['collapse_header']) ? 'false' : 'true', ',
  301. aSwappableContainers: [
  302. \'upper_section\'
  303. ],
  304. aSwapImages: [
  305. {
  306. sId: \'upshrink\',
  307. srcExpanded: smf_images_url + \'/upshrink.png\',
  308. altExpanded: ', JavaScriptEscape($txt['upshrink_description']), ',
  309. srcCollapsed: smf_images_url + \'/upshrink2.png\',
  310. altCollapsed: ', JavaScriptEscape($txt['upshrink_description']), '
  311. }
  312. ],
  313. oThemeOptions: {
  314. bUseThemeSettings: smf_member_id == 0 ? false : true,
  315. sOptionName: \'collapse_header\',
  316. sSessionVar: smf_session_var,
  317. sSessionId: smf_session_id
  318. },
  319. oCookieOptions: {
  320. bUseCookie: smf_member_id == 0 ? true : false,
  321. sCookieName: \'upshrink\'
  322. }
  323. });
  324. // ]]></script>';
  325. // Show the menu here, according to the menu sub template.
  326. template_menu();
  327. echo '
  328. <br class="clear" />
  329. </div></div>';
  330. // The main content should go here.
  331. echo '
  332. <div id="content_section"><div class="frame">
  333. <div id="main_content_section">';
  334. // Custom banners and shoutboxes should be placed here, before the linktree.
  335. // Show the navigation tree.
  336. theme_linktree();
  337. }
  338. function template_body_below()
  339. {
  340. global $context, $settings, $options, $scripturl, $txt, $modSettings;
  341. echo '
  342. </div>
  343. </div></div>';
  344. // Show the "Powered by" and "Valid" logos, as well as the copyright. Remember, the copyright must be somewhere!
  345. echo '
  346. <div id="footer_section"><div class="frame">
  347. <ul class="reset">
  348. <li class="copyright">', theme_copyright(), '</li>
  349. <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>
  350. ', !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>' : '', '
  351. <li class="last"><a id="button_wap2" href="', $scripturl , '?wap2" class="new_win"><span>', $txt['wap2'], '</span></a></li>
  352. </ul>';
  353. // Show the load time?
  354. if ($context['show_load_time'])
  355. echo '
  356. <p>', $txt['page_created'], $context['load_time'], $txt['seconds_with'], $context['load_queries'], $txt['queries'], '</p>';
  357. echo '
  358. </div></div>', !empty($settings['forum_width']) ? '
  359. </div>' : '';
  360. }
  361. function template_html_below()
  362. {
  363. global $context, $settings, $options, $scripturl, $txt, $modSettings;
  364. template_javascript(true);
  365. echo '
  366. </body></html>';
  367. }
  368. /**
  369. * Show a linktree. This is that thing that shows "My Community | General Category | General Discussion"..
  370. * @param bool $force_show = false
  371. */
  372. function theme_linktree($force_show = false)
  373. {
  374. global $context, $settings, $options, $shown_linktree;
  375. // If linktree is empty, just return - also allow an override.
  376. if (empty($context['linktree']) || (!empty($context['dont_default_linktree']) && !$force_show))
  377. return;
  378. echo '
  379. <div class="navigate_section">
  380. <ul>';
  381. // Each tree item has a URL and name. Some may have extra_before and extra_after.
  382. foreach ($context['linktree'] as $link_num => $tree)
  383. {
  384. echo '
  385. <li', ($link_num == count($context['linktree']) - 1) ? ' class="last"' : '', '>';
  386. // Show something before the link?
  387. if (isset($tree['extra_before']))
  388. echo $tree['extra_before'];
  389. // Show the link, including a URL if it should have one.
  390. echo $settings['linktree_link'] && isset($tree['url']) ? '
  391. <a href="' . $tree['url'] . '"><span>' . $tree['name'] . '</span></a>' : '<span>' . $tree['name'] . '</span>';
  392. // Show something after the link...?
  393. if (isset($tree['extra_after']))
  394. echo $tree['extra_after'];
  395. // Don't show a separator for the last one.
  396. if ($link_num != count($context['linktree']) - 1)
  397. echo ' &#187;';
  398. echo '
  399. </li>';
  400. }
  401. echo '
  402. </ul>
  403. </div>';
  404. $shown_linktree = true;
  405. }
  406. /**
  407. * Show the menu up top. Something like [home] [help] [profile] [logout]...
  408. */
  409. function template_menu()
  410. {
  411. global $context, $settings, $options, $scripturl, $txt;
  412. echo '
  413. <div id="main_menu">
  414. <ul class="dropmenu" id="menu_nav">';
  415. // Note: Menu markup has been cleaned up to remove unnecessary spans and classes.
  416. foreach ($context['menu_buttons'] as $act => $button)
  417. {
  418. echo '
  419. <li id="button_', $act, '">
  420. <a class="', $button['active_button'] ? 'active' : '', !empty($button['is_last']) ? ' last' : '', '" href="', $button['href'], '"', isset($button['target']) ? ' target="' . $button['target'] . '"' : '', '>
  421. ', $button['title'], '
  422. </a>';
  423. if (!empty($button['sub_buttons']))
  424. {
  425. echo '
  426. <ul>';
  427. foreach ($button['sub_buttons'] as $childbutton)
  428. {
  429. echo '
  430. <li>
  431. <a href="', $childbutton['href'], '" ', isset($childbutton['is_last']) ? 'class="last"' : '' , isset($childbutton['target']) ? ' target="' . $childbutton['target'] . '"' : '', '>
  432. ', $childbutton['title'], '
  433. </a>';
  434. // 3rd level menus :)
  435. if (!empty($childbutton['sub_buttons']))
  436. {
  437. echo '
  438. <ul>';
  439. foreach ($childbutton['sub_buttons'] as $grandchildbutton)
  440. echo '
  441. <li>
  442. <a href="', $grandchildbutton['href'], '" ', isset($grandchildbutton['is_last']) ? ' class="last"' : '' , isset($grandchildbutton['target']) ? ' target="' . $grandchildbutton['target'] . '"' : '', '>
  443. ', $grandchildbutton['title'], '
  444. </a>
  445. </li>';
  446. echo '
  447. </ul>';
  448. }
  449. echo '
  450. </li>';
  451. }
  452. echo '
  453. </ul>';
  454. }
  455. echo '
  456. </li>';
  457. }
  458. echo '
  459. </ul>
  460. </div>';
  461. }
  462. /**
  463. * Generate a strip of buttons.
  464. * @param array $button_strip
  465. * @param string $direction = ''
  466. * @param array $strip_options = array()
  467. */
  468. function template_button_strip($button_strip, $direction = '', $strip_options = array())
  469. {
  470. global $settings, $context, $txt, $scripturl;
  471. if (!is_array($strip_options))
  472. $strip_options = array();
  473. // List the buttons in reverse order for RTL languages.
  474. if ($context['right_to_left'])
  475. $button_strip = array_reverse($button_strip, true);
  476. // Create the buttons...
  477. $buttons = array();
  478. foreach ($button_strip as $key => $value)
  479. {
  480. if (!isset($value['test']) || !empty($context[$value['test']]))
  481. $buttons[] = '
  482. <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>';
  483. }
  484. // No buttons? No button strip either.
  485. if (empty($buttons))
  486. return;
  487. // Make the last one, as easy as possible.
  488. $buttons[count($buttons) - 1] = str_replace('<span>', '<span class="last">', $buttons[count($buttons) - 1]);
  489. echo '
  490. <div class="buttonlist', !empty($direction) ? ' float' . $direction : '', '"', (empty($buttons) ? ' style="display: none;"' : ''), (!empty($strip_options['id']) ? ' id="' . $strip_options['id'] . '"': ''), '>
  491. <ul>',
  492. implode('', $buttons), '
  493. </ul>
  494. </div>';
  495. }
  496. /**
  497. * Output the Javascript files
  498. */
  499. function template_javascript($do_defered = false)
  500. {
  501. global $context;
  502. // Use this hook to minify/optimize Javascript files
  503. call_integration_hook('pre_javascript_output');
  504. foreach ($context['javascript_files'] as $filename => $options)
  505. if ((!$do_defered && empty($options['defer'])) || ($do_defered && !empty($options['defer'])))
  506. echo '
  507. <script type="text/javascript" src="', $filename, '"></script>';
  508. }
  509. /**
  510. * Output the Javascript vars
  511. */
  512. function template_javascript_vars()
  513. {
  514. global $context;
  515. call_integration_hook('pre_javascript_vars_output');
  516. foreach ($context['javascript_vars'] as $key => $value)
  517. echo '
  518. var ', $key, ' = ', $value;
  519. }
  520. /**
  521. * Output the CSS files
  522. */
  523. function template_css()
  524. {
  525. global $context;
  526. // Use this hook to minify/optimize CSS files
  527. call_integration_hook('pre_css_output');
  528. foreach ($context['css_files'] as $filename => $options)
  529. echo '
  530. <link rel="stylesheet" type="text/css" href="', $filename, '" />';
  531. }
  532. ?>