Settings.template.php 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272
  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. function template_options()
  13. {
  14. global $context, $settings, $options, $scripturl, $txt;
  15. $context['theme_options'] = array(
  16. array(
  17. 'id' => 'show_board_desc',
  18. 'label' => $txt['board_desc_inside'],
  19. 'default' => true,
  20. ),
  21. array(
  22. 'id' => 'show_children',
  23. 'label' => $txt['show_children'],
  24. 'default' => true,
  25. ),
  26. array(
  27. 'id' => 'use_sidebar_menu',
  28. 'label' => $txt['use_sidebar_menu'],
  29. 'default' => true,
  30. ),
  31. array(
  32. 'id' => 'show_no_avatars',
  33. 'label' => $txt['show_no_avatars'],
  34. 'default' => true,
  35. ),
  36. array(
  37. 'id' => 'show_no_signatures',
  38. 'label' => $txt['show_no_signatures'],
  39. 'default' => true,
  40. ),
  41. array(
  42. 'id' => 'return_to_post',
  43. 'label' => $txt['return_to_post'],
  44. 'default' => true,
  45. ),
  46. array(
  47. 'id' => 'no_new_reply_warning',
  48. 'label' => $txt['no_new_reply_warning'],
  49. 'default' => true,
  50. ),
  51. array(
  52. 'id' => 'view_newest_first',
  53. 'label' => $txt['recent_posts_at_top'],
  54. 'default' => true,
  55. ),
  56. array(
  57. 'id' => 'view_newest_pm_first',
  58. 'label' => $txt['recent_pms_at_top'],
  59. 'default' => true,
  60. ),
  61. array(
  62. 'id' => 'posts_apply_ignore_list',
  63. 'label' => $txt['posts_apply_ignore_list'],
  64. 'default' => false,
  65. ),
  66. array(
  67. 'id' => 'wysiwyg_default',
  68. 'label' => $txt['wysiwyg_default'],
  69. 'default' => false,
  70. ),
  71. array(
  72. 'id' => 'popup_messages',
  73. 'label' => $txt['popup_messages'],
  74. 'default' => true,
  75. ),
  76. array(
  77. 'id' => 'copy_to_outbox',
  78. 'label' => $txt['copy_to_outbox'],
  79. 'default' => true,
  80. ),
  81. array(
  82. 'id' => 'pm_remove_inbox_label',
  83. 'label' => $txt['pm_remove_inbox_label'],
  84. 'default' => true,
  85. ),
  86. array(
  87. 'id' => 'auto_notify',
  88. 'label' => $txt['auto_notify'],
  89. 'default' => true,
  90. ),
  91. array(
  92. 'id' => 'topics_per_page',
  93. 'label' => $txt['topics_per_page'],
  94. 'options' => array(
  95. 0 => $txt['per_page_default'],
  96. 5 => 5,
  97. 10 => 10,
  98. 25 => 25,
  99. 50 => 50,
  100. ),
  101. 'default' => true,
  102. ),
  103. array(
  104. 'id' => 'messages_per_page',
  105. 'label' => $txt['messages_per_page'],
  106. 'options' => array(
  107. 0 => $txt['per_page_default'],
  108. 5 => 5,
  109. 10 => 10,
  110. 25 => 25,
  111. 50 => 50,
  112. ),
  113. 'default' => true,
  114. ),
  115. array(
  116. 'id' => 'calendar_start_day',
  117. 'label' => $txt['calendar_start_day'],
  118. 'options' => array(
  119. 0 => $txt['days'][0],
  120. 1 => $txt['days'][1],
  121. 6 => $txt['days'][6],
  122. ),
  123. 'default' => true,
  124. ),
  125. array(
  126. 'id' => 'display_quick_reply',
  127. 'label' => $txt['display_quick_reply'],
  128. 'options' => array(
  129. 0 => $txt['display_quick_reply1'],
  130. 1 => $txt['display_quick_reply2'],
  131. 2 => $txt['display_quick_reply3']
  132. ),
  133. 'default' => true,
  134. ),
  135. array(
  136. 'id' => 'display_quick_mod',
  137. 'label' => $txt['display_quick_mod'],
  138. 'options' => array(
  139. 0 => $txt['display_quick_mod_none'],
  140. 1 => $txt['display_quick_mod_check'],
  141. 2 => $txt['display_quick_mod_image'],
  142. ),
  143. 'default' => true,
  144. ),
  145. );
  146. }
  147. function template_settings()
  148. {
  149. global $context, $settings, $options, $scripturl, $txt;
  150. $context['theme_settings'] = array(
  151. array(
  152. 'id' => 'header_logo_url',
  153. 'label' => $txt['header_logo_url'],
  154. 'description' => $txt['header_logo_url_desc'],
  155. 'type' => 'text',
  156. ),
  157. array(
  158. 'id' => 'site_slogan',
  159. 'label' => $txt['site_slogan'],
  160. 'description' => $txt['site_slogan_desc'],
  161. 'type' => 'text',
  162. ),
  163. array(
  164. 'id' => 'smiley_sets_default',
  165. 'label' => $txt['smileys_default_set_for_theme'],
  166. 'options' => $context['smiley_sets'],
  167. 'type' => 'text',
  168. ),
  169. '',
  170. array(
  171. 'id' => 'linktree_link',
  172. 'label' => $txt['current_pos_text_img'],
  173. ),
  174. array(
  175. 'id' => 'show_mark_read',
  176. 'label' => $txt['enable_mark_as_read'],
  177. ),
  178. array(
  179. 'id' => 'enable_news',
  180. 'label' => $txt['enable_random_news'],
  181. ),
  182. '',
  183. array(
  184. 'id' => 'show_newsfader',
  185. 'label' => $txt['news_fader'],
  186. ),
  187. array(
  188. 'id' => 'newsfader_time',
  189. 'label' => $txt['admin_fader_delay'],
  190. 'type' => 'number',
  191. ),
  192. array(
  193. 'id' => 'number_recent_posts',
  194. 'label' => $txt['number_recent_posts'],
  195. 'description' => $txt['number_recent_posts_desc'],
  196. 'type' => 'number',
  197. ),
  198. array(
  199. 'id' => 'show_stats_index',
  200. 'label' => $txt['show_stats_index'],
  201. ),
  202. array(
  203. 'id' => 'show_latest_member',
  204. 'label' => $txt['latest_members'],
  205. ),
  206. array(
  207. 'id' => 'show_group_key',
  208. 'label' => $txt['show_group_key'],
  209. ),
  210. array(
  211. 'id' => 'display_who_viewing',
  212. 'label' => $txt['who_display_viewing'],
  213. 'options' => array(
  214. 0 => $txt['who_display_viewing_off'],
  215. 1 => $txt['who_display_viewing_numbers'],
  216. 2 => $txt['who_display_viewing_names'],
  217. ),
  218. 'type' => 'number',
  219. ),
  220. '',
  221. array(
  222. 'id' => 'show_modify',
  223. 'label' => $txt['last_modification'],
  224. ),
  225. array(
  226. 'id' => 'show_profile_buttons',
  227. 'label' => $txt['show_view_profile_button'],
  228. ),
  229. array(
  230. 'id' => 'show_user_images',
  231. 'label' => $txt['user_avatars'],
  232. ),
  233. array(
  234. 'id' => 'show_blurb',
  235. 'label' => $txt['user_text'],
  236. ),
  237. array(
  238. 'id' => 'show_gender',
  239. 'label' => $txt['gender_images'],
  240. ),
  241. array(
  242. 'id' => 'hide_post_group',
  243. 'label' => $txt['hide_post_group'],
  244. 'description' => $txt['hide_post_group_desc'],
  245. ),
  246. '',
  247. array(
  248. 'id' => 'show_bbc',
  249. 'label' => $txt['admin_bbc'],
  250. ),
  251. array(
  252. 'id' => 'additional_options_collapsable',
  253. 'label' => $txt['additional_options_collapsable'],
  254. ),
  255. '',
  256. array(
  257. 'id' => 'message_index_preview',
  258. 'label' => $txt['message_index_preview'],
  259. ),
  260. array(
  261. 'id' => 'message_index_preview_first',
  262. 'label' => $txt['message_index_preview_first'],
  263. 'description' => $txt['message_index_preview_first_desc'],
  264. ),
  265. );
  266. }
  267. ?>