Settings.template.php 5.7 KB

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