BoardIndex.template.php 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472
  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. function template_main()
  13. {
  14. global $context, $settings, $options, $txt, $scripturl, $modSettings;
  15. // Show some statistics if stat info is off.
  16. if (!$settings['show_stats_index'])
  17. echo '
  18. <div id="index_common_stats">
  19. ', $txt['members'], ': ', $context['common_stats']['total_members'], ' &nbsp;&#8226;&nbsp; ', $txt['posts_made'], ': ', $context['common_stats']['total_posts'], ' &nbsp;&#8226;&nbsp; ', $txt['topics_made'], ': ', $context['common_stats']['total_topics'], '<br />
  20. ', $settings['show_latest_member'] ? ' ' . sprintf($txt['welcome_newest_member'], ' <strong>' . $context['common_stats']['latest_member']['link'] . '</strong>') : '' , '
  21. </div>';
  22. // Show the news fader? (assuming there are things to show...)
  23. if ($settings['show_newsfader'] && !empty($context['news_lines']))
  24. {
  25. echo '
  26. <div id="newsfader">
  27. <div class="cat_bar">
  28. <h3 class="catbg">
  29. <img id="newsupshrink" src="', $settings['images_url'], '/collapse.png" alt="*" title="', $txt['hide'], '" align="bottom" style="display: none;" />
  30. ', $txt['news'], '
  31. </h3>
  32. </div>
  33. <ul class="reset" id="smfFadeScroller"', empty($options['collapse_news_fader']) ? '' : ' style="display: none;"', '>
  34. <li>
  35. ', implode('</li><li>', $context['news_lines']), '
  36. </li>
  37. </ul>
  38. </div>
  39. <script type="text/javascript" src="', $settings['default_theme_url'], '/scripts/fader.js"></script>
  40. <script type="text/javascript"><!-- // --><![CDATA[
  41. // Create a news fader object.
  42. var oNewsFader = new smc_NewsFader({
  43. sFaderControlId: \'smfFadeScroller\',
  44. sItemTemplate: ', JavaScriptEscape('<strong>%1$s</strong>'), ',
  45. iFadeDelay: ', empty($settings['newsfader_time']) ? 5000 : $settings['newsfader_time'], '
  46. });
  47. // Create the news fader toggle.
  48. var smfNewsFadeToggle = new smc_Toggle({
  49. bToggleEnabled: true,
  50. bCurrentlyCollapsed: ', empty($options['collapse_news_fader']) ? 'false' : 'true', ',
  51. aSwappableContainers: [
  52. \'smfFadeScroller\'
  53. ],
  54. aSwapImages: [
  55. {
  56. sId: \'newsupshrink\',
  57. srcExpanded: smf_images_url + \'/collapse.png\',
  58. altExpanded: ', JavaScriptEscape($txt['hide']), ',
  59. srcCollapsed: smf_images_url + \'/expand.png\',
  60. altCollapsed: ', JavaScriptEscape($txt['show']), '
  61. }
  62. ],
  63. oThemeOptions: {
  64. bUseThemeSettings: ', $context['user']['is_guest'] ? 'false' : 'true', ',
  65. sOptionName: \'collapse_news_fader\',
  66. sSessionVar: smf_session_var,
  67. sSessionId: smf_session_id
  68. },
  69. oCookieOptions: {
  70. bUseCookie: ', $context['user']['is_guest'] ? 'true' : 'false', ',
  71. sCookieName: \'newsupshrink\'
  72. }
  73. });
  74. // ]]></script>';
  75. }
  76. echo '
  77. <div id="boardindex_table" class="boardindex_table">
  78. <table class="table_list">';
  79. /* Each category in categories is made up of:
  80. id, href, link, name, is_collapsed (is it collapsed?), can_collapse (is it okay if it is?),
  81. new (is it new?), collapse_href (href to collapse/expand), collapse_image (up/down image),
  82. and boards. (see below.) */
  83. foreach ($context['categories'] as $category)
  84. {
  85. // If theres no parent boards we can see, avoid showing an empty category (unless its collapsed)
  86. if (empty($category['boards']) && !$category['is_collapsed'])
  87. continue;
  88. echo '
  89. <tbody class="header" id="category_', $category['id'], '">
  90. <tr>
  91. <td colspan="4">
  92. <div class="cat_bar">
  93. <h3 class="catbg">';
  94. // If this category even can collapse, show a link to collapse it.
  95. if ($category['can_collapse'])
  96. echo '
  97. <a class="collapse" href="', $category['collapse_href'], '" title="' ,$category['is_collapsed'] ? $txt['show'] : $txt['hide'] ,'">', $category['collapse_image'], '</a>';
  98. echo '
  99. ', $category['link'], '
  100. </h3>
  101. </div>
  102. </td>
  103. </tr>
  104. </tbody>';
  105. // Assuming the category hasn't been collapsed...
  106. if (!$category['is_collapsed'])
  107. {
  108. echo '
  109. <tbody class="content" id="category_', $category['id'], '_boards">';
  110. /* Each board in each category's boards has:
  111. new (is it new?), id, name, description, moderators (see below), link_moderators (just a list.),
  112. children (see below.), link_children (easier to use.), children_new (are they new?),
  113. topics (# of), posts (# of), link, href, and last_post. (see below.) */
  114. foreach ($category['boards'] as $board)
  115. {
  116. echo '
  117. <tr id="board_', $board['id'], '" class="windowbg2">
  118. <td class="windowbg icon"', !empty($board['children']) ? ' rowspan="2"' : '', '>
  119. <a href="', ($board['is_redirect'] || $context['user']['is_guest'] ? $board['href'] : $scripturl . '?action=unread;board=' . $board['id'] . '.0;children'), '">';
  120. // If the board or children is new, show an indicator.
  121. if ($board['new'] || $board['children_new'])
  122. echo '
  123. <img src="', $settings['images_url'], '/', $context['theme_variant_url'], 'on', $board['new'] ? '' : '2', '.png" alt="', $txt['new_posts'], '" title="', $txt['new_posts'], '" />';
  124. // Is it a redirection board?
  125. elseif ($board['is_redirect'])
  126. echo '
  127. <img src="', $settings['images_url'], '/', $context['theme_variant_url'], 'redirect.png" alt="*" title="*" />';
  128. // No new posts at all! The agony!!
  129. else
  130. echo '
  131. <img src="', $settings['images_url'], '/', $context['theme_variant_url'], 'off.png" alt="', $txt['old_posts'], '" title="', $txt['old_posts'], '" />';
  132. echo '
  133. </a>
  134. </td>
  135. <td class="info">
  136. <a class="subject" href="', $board['href'], '" name="b', $board['id'], '">', $board['name'], '</a>';
  137. // Has it outstanding posts for approval?
  138. if ($board['can_approve_posts'] && ($board['unapproved_posts'] || $board['unapproved_topics']))
  139. echo '
  140. <a href="', $scripturl, '?action=moderate;area=postmod;sa=', ($board['unapproved_topics'] > 0 ? 'topics' : 'posts'), ';brd=', $board['id'], ';', $context['session_var'], '=', $context['session_id'], '" title="', sprintf($txt['unapproved_posts'], $board['unapproved_topics'], $board['unapproved_posts']), '" class="moderation_link">(!)</a>';
  141. echo '
  142. <p>', $board['description'] , '</p>';
  143. // Show the "Moderators: ". Each has name, href, link, and id. (but we're gonna use link_moderators.)
  144. if (!empty($board['moderators']))
  145. echo '
  146. <p class="moderators">', count($board['moderators']) == 1 ? $txt['moderator'] : $txt['moderators'], ': ', implode(', ', $board['link_moderators']), '</p>';
  147. // Show some basic information about the number of posts, etc.
  148. echo '
  149. </td>
  150. <td class="windowbg stats">
  151. <p>', comma_format($board['posts']), ' ', $board['is_redirect'] ? $txt['redirects'] : $txt['posts'], '
  152. ', $board['is_redirect'] ? '' : '<br /> '.comma_format($board['topics']) . ' ' . $txt['board_topics'], '
  153. </p>
  154. </td>
  155. <td class="lastpost">';
  156. if (!empty($board['last_post']['id']))
  157. echo '
  158. <p>', $board['last_post']['last_post_message'], '</p>';
  159. echo '
  160. </td>
  161. </tr>';
  162. // Show the "Child Boards: ". (there's a link_children but we're going to bold the new ones...)
  163. if (!empty($board['children']))
  164. {
  165. // Sort the links into an array with new boards bold so it can be imploded.
  166. $children = array();
  167. /* Each child in each board's children has:
  168. id, name, description, new (is it new?), topics (#), posts (#), href, link, and last_post. */
  169. foreach ($board['children'] as $child)
  170. {
  171. if (!$child['is_redirect'])
  172. $child['link'] = '<a href="' . $child['href'] . '" ' . ($child['new'] ? 'class="board_new_posts" ' : '') . 'title="' . ($child['new'] ? $txt['new_posts'] : $txt['old_posts']) . ' (' . $txt['board_topics'] . ': ' . comma_format($child['topics']) . ', ' . $txt['posts'] . ': ' . comma_format($child['posts']) . ')">' . $child['name'] . ($child['new'] ? '</a> <a href="' . $scripturl . '?action=unread;board=' . $child['id'] . '" title="' . $txt['new_posts'] . ' (' . $txt['board_topics'] . ': ' . comma_format($child['topics']) . ', ' . $txt['posts'] . ': ' . comma_format($child['posts']) . ')"><span class="new_posts">' . $txt['new'] . '</span>' : '') . '</a>';
  173. else
  174. $child['link'] = '<a href="' . $child['href'] . '" title="' . comma_format($child['posts']) . ' ' . $txt['redirects'] . '">' . $child['name'] . '</a>';
  175. // Has it posts awaiting approval?
  176. if ($child['can_approve_posts'] && ($child['unapproved_posts'] || $child['unapproved_topics']))
  177. $child['link'] .= ' <a href="' . $scripturl . '?action=moderate;area=postmod;sa=' . ($child['unapproved_topics'] > 0 ? 'topics' : 'posts') . ';brd=' . $child['id'] . ';' . $context['session_var'] . '=' . $context['session_id'] . '" title="' . sprintf($txt['unapproved_posts'], $child['unapproved_topics'], $child['unapproved_posts']) . '" class="moderation_link">(!)</a>';
  178. $children[] = $child['new'] ? '<strong>' . $child['link'] . '</strong>' : $child['link'];
  179. }
  180. echo '
  181. <tr id="board_', $board['id'], '_children" class="windowbg2">
  182. <td colspan="3" class="windowbg children">
  183. <p><strong>', $txt['parent_boards'], '</strong>: ', implode(', ', $children), '</p>
  184. </td>
  185. </tr>';
  186. }
  187. }
  188. echo '
  189. </tbody>';
  190. }
  191. echo '
  192. <tbody class="divider">
  193. <tr>
  194. <td colspan="4"></td>
  195. </tr>
  196. </tbody>';
  197. }
  198. echo '
  199. </table>
  200. </div>
  201. <ul id="posting_icons">';
  202. if ($context['user']['is_logged'])
  203. echo '
  204. <li class="floatleft"><img src="', $settings['images_url'], '/', $context['theme_variant_url'], 'new_some.png" alt="" /> ', $txt['new_posts'], '</li>';
  205. echo '
  206. <li class="floatleft"><img src="', $settings['images_url'], '/', $context['theme_variant_url'], 'new_none.png" alt="" /> ', $txt['old_posts'], '</li>
  207. <li class="floatleft"><img src="', $settings['images_url'], '/', $context['theme_variant_url'], 'new_redirect.png" alt="" /> ', $txt['redirect_board'], '</li>
  208. </ul>';
  209. // Show the mark all as read button?
  210. if ($settings['show_mark_read'] && !empty($context['categories']))
  211. echo '
  212. <div class="mark_read">', template_button_strip($context['mark_read_button'], 'right'), '</div>';
  213. template_info_center();
  214. }
  215. function template_info_center()
  216. {
  217. global $context, $settings, $options, $txt, $scripturl, $modSettings;
  218. // Here's where the "Info Center" starts...
  219. echo '
  220. <div class="roundframe" id="info_center">
  221. <div class="cat_bar">
  222. <h3 class="catbg">
  223. <img class="icon" id="upshrink_ic" src="', $settings['images_url'], '/collapse.png" alt="*" title="', $txt['hide'], '" style="display: none;" />
  224. <a href="#" id="upshrink_link">', sprintf($txt['info_center_title'], $context['forum_name_html_safe']), '</a>
  225. </h3>
  226. </div>
  227. <div id="upshrinkHeaderIC"', empty($options['collapse_header_ic']) ? '' : ' style="display: none;"', '>';
  228. // This is the "Recent Posts" bar.
  229. if (!empty($settings['number_recent_posts']) && (!empty($context['latest_posts']) || !empty($context['latest_post'])))
  230. {
  231. echo '
  232. <div class="title_barIC">
  233. <h4 class="titlebg">
  234. <a href="', $scripturl, '?action=recent"><img class="icon" src="', $settings['images_url'], '/post/xx.png" alt="" />', $txt['recent_posts'], '</a>
  235. </h4>
  236. </div>
  237. <div class="hslice" id="recent_posts_content">
  238. <div class="entry-title" style="display: none;">', $context['forum_name_html_safe'], ' - ', $txt['recent_posts'], '</div>
  239. <div class="entry-content" style="display: none;">
  240. <a rel="feedurl" href="', $scripturl, '?action=.xml;type=webslice">', $txt['subscribe_webslice'], '</a>
  241. </div>';
  242. // Only show one post.
  243. if ($settings['number_recent_posts'] == 1)
  244. {
  245. // latest_post has link, href, time, subject, short_subject (shortened with...), and topic. (its id.)
  246. echo '
  247. <p id="infocenter_onepost" class="inline">
  248. <a href="', $scripturl, '?action=recent">', $txt['recent_view'], '</a>&nbsp;&quot;', sprintf($txt['is_recent_updated'], '&quot;' . $context['latest_post']['link'], '&quot;'), ' (', $context['latest_post']['time'], ')<br />
  249. </p>';
  250. }
  251. // Show lots of posts.
  252. elseif (!empty($context['latest_posts']))
  253. {
  254. echo '
  255. <table id="ic_recentposts">
  256. <tr>
  257. <th class="recentpost first_th">', $txt['message'], '</th>
  258. <th class="recentposter">', $txt['author'], '</th>
  259. <th class="recentboard">', $txt['board'], '</th>
  260. <th class="recenttime last_th">', $txt['date'], '</th>
  261. </tr>';
  262. /* Each post in latest_posts has:
  263. board (with an id, name, and link.), topic (the topic's id.), poster (with id, name, and link.),
  264. subject, short_subject (shortened with...), time, link, and href. */
  265. foreach ($context['latest_posts'] as $post)
  266. echo '
  267. <tr>
  268. <td class="recentpost"><strong>', $post['link'], '</strong></td>
  269. <td class="recentposter">', $post['poster']['link'], '</td>
  270. <td class="recentboard">', $post['board']['link'], '</td>
  271. <td class="recenttime">', $post['time'], '</td>
  272. </tr>';
  273. echo '
  274. </table>';
  275. }
  276. echo '
  277. </div>';
  278. }
  279. // Show information about events, birthdays, and holidays on the calendar.
  280. if ($context['show_calendar'])
  281. {
  282. echo '
  283. <div class="title_barIC">
  284. <h4 class="titlebg">
  285. <a href="', $scripturl, '?action=calendar' . '"><img class="icon" src="', $settings['images_url'], '/icons/calendar.png', '" alt="" />', $context['calendar_only_today'] ? $txt['calendar_today'] : $txt['calendar_upcoming'], '</a>
  286. </h4>
  287. </div>';
  288. // Holidays like "Christmas", "Chanukah", and "We Love [Unknown] Day" :P.
  289. if (!empty($context['calendar_holidays']))
  290. echo '
  291. <p class="inline holiday">', $txt['calendar_prompt'], ' ', implode(', ', $context['calendar_holidays']), '</p>';
  292. // People's birthdays. Like mine. And yours, I guess. Kidding.
  293. if (!empty($context['calendar_birthdays']))
  294. {
  295. echo '
  296. <p class="inline">
  297. <span class="birthday">', $context['calendar_only_today'] ? $txt['birthdays'] : $txt['birthdays_upcoming'], '</span>';
  298. // Each member in calendar_birthdays has: id, name (person), age (if they have one set?), is_last. (last in list?), and is_today (birthday is today?)
  299. foreach ($context['calendar_birthdays'] as $member)
  300. echo '
  301. <a href="', $scripturl, '?action=profile;u=', $member['id'], '">', $member['is_today'] ? '<strong class="fix_rtl_names">' : '', $member['name'], $member['is_today'] ? '</strong>' : '', isset($member['age']) ? ' (' . $member['age'] . ')' : '', '</a>', $member['is_last'] ? '' : ', ';
  302. echo '
  303. </p>';
  304. }
  305. // Events like community get-togethers.
  306. if (!empty($context['calendar_events']))
  307. {
  308. echo '
  309. <p class="inline">
  310. <span class="event">', $context['calendar_only_today'] ? $txt['events'] : $txt['events_upcoming'], '</span> ';
  311. // Each event in calendar_events should have:
  312. // title, href, is_last, can_edit (are they allowed?), modify_href, and is_today.
  313. foreach ($context['calendar_events'] as $event)
  314. echo '
  315. ', $event['can_edit'] ? '<a href="' . $event['modify_href'] . '" title="' . $txt['calendar_edit'] . '"><img src="' . $settings['images_url'] . '/icons/calendar_modify.png" alt="*" class="centericon" /></a> ' : '', $event['href'] == '' ? '' : '<a href="' . $event['href'] . '">', $event['is_today'] ? '<strong>' . $event['title'] . '</strong>' : $event['title'], $event['href'] == '' ? '' : '</a>', $event['is_last'] ? '<br />' : ', ';
  316. echo '
  317. </p>';
  318. }
  319. }
  320. // Show statistical style information...
  321. if ($settings['show_stats_index'])
  322. {
  323. echo '
  324. <div class="title_barIC">
  325. <h4 class="titlebg">
  326. <a href="', $scripturl, '?action=stats" title="', $txt['more_stats'], '"><img class="icon" src="', $settings['images_url'], '/icons/info.png" alt="" />', $txt['forum_stats'], '</a>
  327. </h4>
  328. </div>
  329. <p class="inline">
  330. ', $context['common_stats']['boardindex_total_posts'], '', !empty($settings['show_latest_member']) ? ' - '. $txt['latest_member'] . ': <strong> ' . $context['common_stats']['latest_member']['link'] . '</strong>' : '', '<br />
  331. ', (!empty($context['latest_post']) ? $txt['latest_post'] . ': <strong>&quot;' . $context['latest_post']['link'] . '&quot;</strong> ( ' . $context['latest_post']['time'] . ' )<br />' : ''), '
  332. <a href="', $scripturl, '?action=recent">', $txt['recent_view'], '</a>
  333. </p>';
  334. }
  335. // "Users online" - in order of activity.
  336. echo '
  337. <div class="title_barIC">
  338. <h4 class="titlebg">
  339. ', $context['show_who'] ? '<a href="' . $scripturl . '?action=who">' : '', '<img class="icon" src="', $settings['images_url'], '/icons/online.png', '" alt="" />', $txt['online_users'], '', $context['show_who'] ? '</a>' : '', '
  340. </h4>
  341. </div>
  342. <p class="inline">
  343. ', $context['show_who'] ? '<a href="' . $scripturl . '?action=who">' : '', '<strong>', $txt['online'], ': </strong>', comma_format($context['num_guests']), ' ', $context['num_guests'] == 1 ? $txt['guest'] : $txt['guests'], ', ', comma_format($context['num_users_online']), ' ', $context['num_users_online'] == 1 ? $txt['user'] : $txt['users'];
  344. // Handle hidden users and buddies.
  345. $bracketList = array();
  346. if ($context['show_buddies'])
  347. $bracketList[] = comma_format($context['num_buddies']) . ' ' . ($context['num_buddies'] == 1 ? $txt['buddy'] : $txt['buddies']);
  348. if (!empty($context['num_spiders']))
  349. $bracketList[] = comma_format($context['num_spiders']) . ' ' . ($context['num_spiders'] == 1 ? $txt['spider'] : $txt['spiders']);
  350. if (!empty($context['num_users_hidden']))
  351. $bracketList[] = comma_format($context['num_users_hidden']) . ' ' . ($context['num_spiders'] == 1 ? $txt['hidden'] : $txt['hidden_s']);
  352. if (!empty($bracketList))
  353. echo ' (' . implode(', ', $bracketList) . ')';
  354. echo $context['show_who'] ? '</a>' : '', '
  355. &nbsp;-&nbsp;', $txt['most_online_today'], ': <strong>', comma_format($modSettings['mostOnlineToday']), '</strong>&nbsp;-&nbsp;
  356. ', $txt['most_online_ever'], ': ', comma_format($modSettings['mostOnline']), ' (', timeformat($modSettings['mostDate']), ')<br />';
  357. // Assuming there ARE users online... each user in users_online has an id, username, name, group, href, and link.
  358. if (!empty($context['users_online']))
  359. {
  360. echo '
  361. ', sprintf($txt['users_active'], $modSettings['lastActive']), ': ', implode(', ', $context['list_users_online']);
  362. // Showing membergroups?
  363. if (!empty($settings['show_group_key']) && !empty($context['membergroups']))
  364. echo '
  365. <span class="membergroups">[' . implode(',&nbsp;', $context['membergroups']). ']</span>';
  366. }
  367. echo '
  368. </p>';
  369. // If they are logged in, but statistical information is off... show a personal message bar.
  370. if ($context['user']['is_logged'] && !$settings['show_stats_index'])
  371. {
  372. echo '
  373. <div class="title_barIC">
  374. <h4 class="titlebg">
  375. ', $context['allow_pm'] ? '<a href="' . $scripturl . '?action=pm">' : '', '<img class="icon" src="', $settings['images_url'], '/message_sm.png" alt="" />', $txt['personal_message'], '', $context['allow_pm'] ? '</a>' : '', '
  376. </h4>
  377. </div>
  378. <p class="pminfo">
  379. ', empty($context['user']['messages']) ? $txt['you_have_no_msg'] : ($context['user']['messages'] == 1 ? sprintf($txt['you_have_one_msg'], $scripturl . '?action=pm') : sprintf($txt['you_have_many_msgs'], $scripturl . '?action=pm', $context['user']['messages'])), '
  380. </p>';
  381. }
  382. echo '
  383. </div>
  384. </div>';
  385. // Info center collapse object.
  386. echo '
  387. <script type="text/javascript"><!-- // --><![CDATA[
  388. var oInfoCenterToggle = new smc_Toggle({
  389. bToggleEnabled: true,
  390. bCurrentlyCollapsed: ', empty($options['collapse_header_ic']) ? 'false' : 'true', ',
  391. aSwappableContainers: [
  392. \'upshrinkHeaderIC\'
  393. ],
  394. aSwapImages: [
  395. {
  396. sId: \'upshrink_ic\',
  397. srcExpanded: smf_images_url + \'/collapse.png\',
  398. altExpanded: ', JavaScriptEscape($txt['hide']), ',
  399. srcCollapsed: smf_images_url + \'/expand.png\',
  400. altCollapsed: ', JavaScriptEscape($txt['show']), '
  401. }
  402. ],
  403. aSwapLinks: [
  404. {
  405. sId: \'upshrink_link\',
  406. msgExpanded: ', JavaScriptEscape(sprintf($txt['info_center_title'], $context['forum_name_html_safe'])), ',
  407. msgCollapsed: ', JavaScriptEscape(sprintf($txt['info_center_title'], $context['forum_name_html_safe'])), '
  408. }
  409. ],
  410. oThemeOptions: {
  411. bUseThemeSettings: ', $context['user']['is_guest'] ? 'false' : 'true', ',
  412. sOptionName: \'collapse_header_ic\',
  413. sSessionId: smf_session_id,
  414. sSessionVar: smf_session_var,
  415. },
  416. oCookieOptions: {
  417. bUseCookie: ', $context['user']['is_guest'] ? 'true' : 'false', ',
  418. sCookieName: \'upshrinkIC\'
  419. }
  420. });
  421. // ]]></script>';
  422. }
  423. ?>