Settings.template.php 6.2 KB

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