ManageSettings.php 69 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001
  1. <?php
  2. /**
  3. * This file is here to make it easier for installed mods to have
  4. * settings and options.
  5. *
  6. * Simple Machines Forum (SMF)
  7. *
  8. * @package SMF
  9. * @author Simple Machines http://www.simplemachines.org
  10. * @copyright 2013 Simple Machines and individual contributors
  11. * @license http://www.simplemachines.org/about/smf/license.php BSD
  12. *
  13. * @version 2.1 Alpha 1
  14. */
  15. if (!defined('SMF'))
  16. die('No direct access...');
  17. /**
  18. * This function makes sure the requested subaction does exists, if it doesn't, it sets a default action or.
  19. *
  20. * @param array $subActions = array() An array containing all possible subactions.
  21. * @param string $defaultAction = '' the default action to be called if no valid subaction was found.
  22. */
  23. function loadGeneralSettingParameters($subActions = array(), $defaultAction = '')
  24. {
  25. global $context, $txt, $sourcedir;
  26. // You need to be an admin to edit settings!
  27. isAllowedTo('admin_forum');
  28. loadLanguage('Help');
  29. loadLanguage('ManageSettings');
  30. // Will need the utility functions from here.
  31. require_once($sourcedir . '/ManageServer.php');
  32. $context['sub_template'] = 'show_settings';
  33. // By default do the basic settings.
  34. $_REQUEST['sa'] = isset($_REQUEST['sa']) && isset($subActions[$_REQUEST['sa']]) ? $_REQUEST['sa'] : (!empty($defaultAction) ? $defaultAction : array_pop($temp = array_keys($subActions)));
  35. $context['sub_action'] = $_REQUEST['sa'];
  36. }
  37. /**
  38. * This function passes control through to the relevant tab.
  39. */
  40. function ModifyFeatureSettings()
  41. {
  42. global $context, $txt, $scripturl, $modSettings, $settings;
  43. $context['page_title'] = $txt['modSettings_title'];
  44. $subActions = array(
  45. 'basic' => 'ModifyBasicSettings',
  46. 'layout' => 'ModifyLayoutSettings',
  47. 'karma' => 'ModifyKarmaSettings',
  48. 'sig' => 'ModifySignatureSettings',
  49. 'profile' => 'ShowCustomProfiles',
  50. 'profileedit' => 'EditCustomProfiles',
  51. );
  52. call_integration_hook('integrate_modify_features', array(&$subActions));
  53. loadGeneralSettingParameters($subActions, 'basic');
  54. // Load up all the tabs...
  55. $context[$context['admin_menu_name']]['tab_data'] = array(
  56. 'title' => $txt['modSettings_title'],
  57. 'help' => 'featuresettings',
  58. 'description' => sprintf($txt['modSettings_desc'], $settings['theme_id'], $context['session_id'], $context['session_var']),
  59. 'tabs' => array(
  60. 'basic' => array(
  61. ),
  62. 'layout' => array(
  63. ),
  64. 'karma' => array(
  65. ),
  66. 'sig' => array(
  67. 'description' => $txt['signature_settings_desc'],
  68. ),
  69. 'profile' => array(
  70. 'description' => $txt['custom_profile_desc'],
  71. ),
  72. ),
  73. );
  74. // Call the right function for this sub-action.
  75. $subActions[$_REQUEST['sa']]();
  76. }
  77. /**
  78. * This my friend, is for all the mod authors out there.
  79. */
  80. function ModifyModSettings()
  81. {
  82. global $context, $txt, $scripturl, $modSettings, $settings;
  83. $context['page_title'] = $txt['admin_modifications'];
  84. $subActions = array(
  85. 'general' => 'ModifyGeneralModSettings',
  86. // Mod authors, once again, if you have a whole section to add do it AFTER this line, and keep a comma at the end.
  87. );
  88. // Make it easier for mods to add new areas.
  89. call_integration_hook('integrate_modify_modifications', array(&$subActions));
  90. loadGeneralSettingParameters($subActions, 'general');
  91. // Load up all the tabs...
  92. $context[$context['admin_menu_name']]['tab_data'] = array(
  93. 'title' => $txt['admin_modifications'],
  94. 'help' => 'modsettings',
  95. 'description' => $txt['modification_settings_desc'],
  96. 'tabs' => array(
  97. 'general' => array(
  98. ),
  99. ),
  100. );
  101. // Call the right function for this sub-action.
  102. $subActions[$_REQUEST['sa']]();
  103. }
  104. /**
  105. * Config array for chaning the basic forum settings
  106. * Accessed from ?action=admin;area=featuresettings;sa=basic;
  107. *
  108. * @param $return_config
  109. */
  110. function ModifyBasicSettings($return_config = false)
  111. {
  112. global $txt, $scripturl, $context, $settings, $sc, $modSettings;
  113. // We need to know if personal text is enabled, and if it's in the registration fields option.
  114. // If admins have set it up as an on-registration thing, they can't set a default value (because it'll never be used)
  115. $disabled_fields = isset($modSettings['disabled_profile_fields']) ? explode(',', $modSettings['disabled_profile_fields']) : array();
  116. $reg_fields = isset($modSettings['registration_fields']) ? explode(',', $modSettings['registration_fields']) : array();
  117. $can_personal_text = !in_array('personal_text', $disabled_fields) && !in_array('personal_text', $reg_fields);
  118. $config_vars = array(
  119. // Big Options... polls, sticky, bbc....
  120. array('select', 'pollMode', array($txt['disable_polls'], $txt['enable_polls'], $txt['polls_as_topics'])),
  121. '',
  122. // Basic stuff, titles, flash, permissions...
  123. array('check', 'allow_guestAccess'),
  124. array('check', 'enable_buddylist'),
  125. array('check', 'enable_unwatch'),
  126. array('check', 'allow_editDisplayName'),
  127. array('check', 'allow_hideOnline'),
  128. array('check', 'titlesEnable'),
  129. array('text', 'default_personal_text', 'subtext' => $txt['default_personal_text_note'], 'disabled' => !$can_personal_text),
  130. '',
  131. // Jquery source
  132. array('select', 'jquery_source', array('auto' => $txt['jquery_auto'], 'local' => $txt['jquery_local'], 'cdn' => $txt['jquery_cdn'], 'custom' => $txt['jquery_custom']), 'onchange' => 'if (this.value == \'custom\'){document.getElementById(\'jquery_custom\').disabled = false; } else {document.getElementById(\'jquery_custom\').disabled = true;}'),
  133. array('text', 'jquery_custom', 'javascript' => 'disabled', 'size' => 75),
  134. '',
  135. // SEO stuff
  136. array('check', 'queryless_urls', 'subtext' => '<strong>' . $txt['queryless_urls_note'] . '</strong>'),
  137. array('text', 'meta_keywords', 'subtext' => $txt['meta_keywords_note'], 'size' => 50),
  138. '',
  139. // Number formatting, timezones.
  140. array('text', 'time_format'),
  141. array('float', 'time_offset', 'subtext' => $txt['setting_time_offset_note'], 6, 'postinput' => $txt['hours']),
  142. 'default_timezone' => array('select', 'default_timezone', array()),
  143. '',
  144. // Who's online?
  145. array('check', 'who_enabled'),
  146. array('int', 'lastActive', 6, 'postinput' => $txt['minutes']),
  147. '',
  148. // Statistics.
  149. array('check', 'trackStats'),
  150. array('check', 'hitStats'),
  151. '',
  152. // Option-ish things... miscellaneous sorta.
  153. array('check', 'allow_disableAnnounce'),
  154. array('check', 'disallow_sendBody'),
  155. );
  156. // Get all the time zones.
  157. if (function_exists('timezone_identifiers_list') && function_exists('date_default_timezone_set'))
  158. {
  159. $all_zones = timezone_identifiers_list();
  160. // Make sure we set the value to the same as the printed value.
  161. foreach ($all_zones as $zone)
  162. $config_vars['default_timezone'][2][$zone] = $zone;
  163. }
  164. else
  165. unset($config_vars['default_timezone']);
  166. call_integration_hook('integrate_modify_basic_settings', array(&$config_vars));
  167. if ($return_config)
  168. return $config_vars;
  169. // Saving?
  170. if (isset($_GET['save']))
  171. {
  172. checkSession();
  173. // Prevent absurd boundaries here - make it a day tops.
  174. if (isset($_POST['lastActive']))
  175. $_POST['lastActive'] = min((int) $_POST['lastActive'], 1440);
  176. call_integration_hook('integrate_save_basic_settings');
  177. saveDBSettings($config_vars);
  178. $_SESSION['adm-save'] = true;
  179. writeLog();
  180. redirectexit('action=admin;area=featuresettings;sa=basic');
  181. }
  182. $context['post_url'] = $scripturl . '?action=admin;area=featuresettings;save;sa=basic';
  183. $context['settings_title'] = $txt['mods_cat_features'];
  184. prepareDBSettingContext($config_vars);
  185. }
  186. /**
  187. * Allows modifying the global layout settings in the forum
  188. * Accessed through ?action=admin;area=featuresettings;sa=layout;
  189. *
  190. * @param $return_config
  191. */
  192. function ModifyLayoutSettings($return_config = false)
  193. {
  194. global $txt, $scripturl, $context, $settings, $sc;
  195. $config_vars = array(
  196. // Pagination stuff.
  197. array('check', 'compactTopicPagesEnable'),
  198. array('int', 'compactTopicPagesContiguous', null, $txt['contiguous_page_display'] . '<div class="smalltext">' . str_replace(' ', '&nbsp;', '"3" ' . $txt['to_display'] . ': <strong>1 ... 4 [5] 6 ... 9</strong>') . '<br />' . str_replace(' ', '&nbsp;', '"5" ' . $txt['to_display'] . ': <strong>1 ... 3 4 [5] 6 7 ... 9</strong>') . '</div>'),
  199. array('int', 'defaultMaxMembers'),
  200. '',
  201. // Stuff that just is everywhere - today, search, online, etc.
  202. array('select', 'todayMod', array($txt['today_disabled'], $txt['today_only'], $txt['yesterday_today'])),
  203. array('check', 'topbottomEnable'),
  204. array('check', 'onlineEnable'),
  205. array('check', 'enableVBStyleLogin'),
  206. '',
  207. // This is like debugging sorta.
  208. array('check', 'timeLoadPageEnable'),
  209. );
  210. call_integration_hook('integrate_layout_settings', array(&$config_vars));
  211. if ($return_config)
  212. return $config_vars;
  213. // Saving?
  214. if (isset($_GET['save']))
  215. {
  216. checkSession();
  217. call_integration_hook('integrate_save_layout_settings');
  218. saveDBSettings($config_vars);
  219. $_SESSION['adm-save'] = true;
  220. writeLog();
  221. redirectexit('action=admin;area=featuresettings;sa=layout');
  222. }
  223. $context['post_url'] = $scripturl . '?action=admin;area=featuresettings;save;sa=layout';
  224. $context['settings_title'] = $txt['mods_cat_layout'];
  225. prepareDBSettingContext($config_vars);
  226. }
  227. /**
  228. * Config array for chaning the karma settings
  229. * Accessed from ?action=admin;area=featuresettings;sa=karma;
  230. *
  231. * @param $return_config
  232. */
  233. function ModifyKarmaSettings($return_config = false)
  234. {
  235. global $txt, $scripturl, $context, $settings, $modSettings;
  236. if (empty($modSettings['karmaMode']))
  237. $config_vars = array(
  238. array('select', 'karmaMode', explode('|', $txt['karma_options'])),
  239. );
  240. else
  241. $config_vars = array(
  242. // Karma - On or off?
  243. array('select', 'karmaMode', explode('|', $txt['karma_options'])),
  244. '',
  245. // Who can do it.... and who is restricted by time limits?
  246. array('int', 'karmaMinPosts', 6, 'postinput' => strtolower($txt['posts'])),
  247. array('float', 'karmaWaitTime', 6, 'postinput' => $txt['hours']),
  248. array('check', 'karmaTimeRestrictAdmins'),
  249. '',
  250. // What does it look like? [smite]?
  251. array('text', 'karmaLabel'),
  252. array('text', 'karmaApplaudLabel'),
  253. array('text', 'karmaSmiteLabel'),
  254. );
  255. call_integration_hook('integrate_karma_settings', array(&$config_vars));
  256. if ($return_config)
  257. return $config_vars;
  258. // Saving?
  259. if (isset($_GET['save']))
  260. {
  261. checkSession();
  262. call_integration_hook('integrate_save_karma_settings');
  263. saveDBSettings($config_vars);
  264. $_SESSION['adm-save'] = true;
  265. redirectexit('action=admin;area=featuresettings;sa=karma');
  266. }
  267. $context['post_url'] = $scripturl . '?action=admin;area=featuresettings;save;sa=karma';
  268. $context['settings_title'] = $txt['karma'];
  269. prepareDBSettingContext($config_vars);
  270. }
  271. /**
  272. * Moderation type settings - although there are fewer than we have you believe ;)
  273. *
  274. * @param bool $return_config = false
  275. */
  276. function ModifyWarningSettings($return_config = false)
  277. {
  278. global $txt, $scripturl, $context, $settings, $sc, $modSettings, $sourcedir;
  279. // You need to be an admin to edit settings!
  280. isAllowedTo('admin_forum');
  281. loadLanguage('Help');
  282. loadLanguage('ManageSettings');
  283. // We need the existing ones for this
  284. list ($currently_enabled, $modSettings['user_limit'], $modSettings['warning_decrement']) = explode(',', $modSettings['warning_settings']);
  285. $config_vars = array(
  286. // Warning system?
  287. 'enable' => array('check', 'warning_enable'),
  288. );
  289. if (!empty($modSettings['warning_settings']) && $currently_enabled)
  290. $config_vars += array(
  291. '',
  292. array('int', 'warning_watch', 'subtext' => $txt['setting_warning_watch_note'], 'help' => 'warning_enable'),
  293. 'moderate' => array('int', 'warning_moderate', 'subtext' => $txt['setting_warning_moderate_note']),
  294. array('int', 'warning_mute', 'subtext' => $txt['setting_warning_mute_note']),
  295. 'rem1' => array('int', 'user_limit', 'subtext' => $txt['setting_user_limit_note']),
  296. 'rem2' => array('int', 'warning_decrement', 'subtext' => $txt['setting_warning_decrement_note']),
  297. array('select', 'warning_show', 'subtext' => $txt['setting_warning_show_note'], array($txt['setting_warning_show_mods'], $txt['setting_warning_show_user'], $txt['setting_warning_show_all'])),
  298. );
  299. call_integration_hook('integrate_warning_settings', array(&$config_vars));
  300. if ($return_config)
  301. return $config_vars;
  302. // Cannot use moderation if post moderation is not enabled.
  303. if (!$modSettings['postmod_active'])
  304. unset($config_vars['moderate']);
  305. // Will need the utility functions from here.
  306. require_once($sourcedir . '/ManageServer.php');
  307. // Saving?
  308. if (isset($_GET['save']))
  309. {
  310. checkSession();
  311. // Make sure these don't have an effect.
  312. if (!$currently_enabled && empty($_POST['warning_enable']))
  313. {
  314. $_POST['warning_watch'] = 0;
  315. $_POST['warning_moderate'] = 0;
  316. $_POST['warning_mute'] = 0;
  317. }
  318. // If it was disabled and we're enabling it now, set some sane defaults.
  319. elseif (!$currently_enabled && !empty($_POST['warning_enable']))
  320. {
  321. // Need to add these, these weren't there before...
  322. $vars = array(
  323. 'warning_watch' => 10,
  324. 'warning_mute' => 60,
  325. );
  326. if ($modSettings['postmod_active'])
  327. $vars['warning_moderate'] = 35;
  328. foreach ($vars as $var => $value)
  329. {
  330. $config_vars[] = array('int', $var);
  331. $_POST[$var] = $value;
  332. }
  333. }
  334. else
  335. {
  336. $_POST['warning_watch'] = min($_POST['warning_watch'], 100);
  337. $_POST['warning_moderate'] = $modSettings['postmod_active'] ? min($_POST['warning_moderate'], 100) : 0;
  338. $_POST['warning_mute'] = min($_POST['warning_mute'], 100);
  339. }
  340. // We might not have these already depending on how we got here.
  341. $_POST['user_limit'] = isset($_POST['user_limit']) ? (int) $_POST['user_limit'] : $modSettings['user_limit'];
  342. $_POST['warning_decrement'] = isset($_POST['warning_decrement']) ? (int) $_POST['warning_decrement'] : $modSettings['warning_decrement'];
  343. // Fix the warning setting array!
  344. $_POST['warning_settings'] = (!empty($_POST['warning_enable']) ? 1 : 0) . ',' . min(100, $_POST['user_limit']) . ',' . min(100, $_POST['warning_decrement']);
  345. $save_vars = $config_vars;
  346. $save_vars[] = array('text', 'warning_settings');
  347. unset($save_vars['enable'], $save_vars['rem1'], $save_vars['rem2']);
  348. call_integration_hook('integrate_save_warning_settings', array(&$save_vars));
  349. saveDBSettings($save_vars);
  350. $_SESSION['adm-save'] = true;
  351. redirectexit('action=admin;area=warnings');
  352. }
  353. // We actually store lots of these together - for efficiency.
  354. list ($modSettings['warning_enable'], $modSettings['user_limit'], $modSettings['warning_decrement']) = explode(',', $modSettings['warning_settings']);
  355. $context['sub_template'] = 'show_settings';
  356. $context['post_url'] = $scripturl . '?action=admin;area=warnings;save';
  357. $context['settings_title'] = $txt['warnings'];
  358. $context['page_title'] = $txt['warnings'];
  359. $context[$context['admin_menu_name']]['tab_data'] = array(
  360. 'title' => $txt['warnings'],
  361. 'help' => '',
  362. 'description' => $txt['warnings_desc'],
  363. );
  364. prepareDBSettingContext($config_vars);
  365. }
  366. /**
  367. * Let's try keep the spam to a minimum ah Thantos?
  368. * @param bool $return_config = false
  369. */
  370. function ModifyAntispamSettings($return_config = false)
  371. {
  372. global $txt, $scripturl, $context, $settings, $sc, $modSettings, $smcFunc, $language, $sourcedir;
  373. loadLanguage('Help');
  374. loadLanguage('ManageSettings');
  375. // Generate a sample registration image.
  376. $context['use_graphic_library'] = in_array('gd', get_loaded_extensions());
  377. $context['verification_image_href'] = $scripturl . '?action=verificationcode;rand=' . md5(mt_rand());
  378. $config_vars = array(
  379. array('check', 'reg_verification'),
  380. array('check', 'search_enable_captcha'),
  381. // This, my friend, is a cheat :p
  382. 'guest_verify' => array('check', 'guests_require_captcha', 'subtext' => $txt['setting_guests_require_captcha_desc']),
  383. array('int', 'posts_require_captcha', 'subtext' => $txt['posts_require_captcha_desc'], 'onchange' => 'if (this.value > 0){ document.getElementById(\'guests_require_captcha\').checked = true; document.getElementById(\'guests_require_captcha\').disabled = true;} else {document.getElementById(\'guests_require_captcha\').disabled = false;}'),
  384. '',
  385. // PM Settings
  386. 'pm1' => array('int', 'max_pm_recipients', 'subtext' => $txt['max_pm_recipients_note']),
  387. 'pm2' => array('int', 'pm_posts_verification', 'subtext' => $txt['pm_posts_verification_note']),
  388. 'pm3' => array('int', 'pm_posts_per_hour', 'subtext' => $txt['pm_posts_per_hour_note']),
  389. // Visual verification.
  390. array('title', 'configure_verification_means'),
  391. array('desc', 'configure_verification_means_desc'),
  392. 'vv' => array('select', 'visual_verification_type', array($txt['setting_image_verification_off'], $txt['setting_image_verification_vsimple'], $txt['setting_image_verification_simple'], $txt['setting_image_verification_medium'], $txt['setting_image_verification_high'], $txt['setting_image_verification_extreme']), 'subtext'=> $txt['setting_visual_verification_type_desc'], 'onchange' => $context['use_graphic_library'] ? 'refreshImages();' : ''),
  393. // Clever Thomas, who is looking sheepy now? Not I, the mighty sword swinger did say.
  394. array('title', 'setup_verification_questions'),
  395. array('desc', 'setup_verification_questions_desc'),
  396. array('int', 'qa_verification_number', 'subtext' => $txt['setting_qa_verification_number_desc']),
  397. array('callback', 'question_answer_list'),
  398. );
  399. call_integration_hook('integrate_spam_settings', array(&$config_vars));
  400. if ($return_config)
  401. return $config_vars;
  402. // You need to be an admin to edit settings!
  403. isAllowedTo('admin_forum');
  404. // Firstly, figure out what languages we're dealing with, and do a little processing for the form's benefit.
  405. getLanguages();
  406. $context['qa_languages'] = array();
  407. foreach ($context['languages'] as $lang_id => $lang)
  408. {
  409. $lang_id = strtr($lang_id, array('-utf8' => ''));
  410. $lang['name'] = strtr($lang['name'], array('-utf8' => ''));
  411. $context['qa_languages'][$lang_id] = $lang;
  412. }
  413. // Secondly, load any questions we currently have.
  414. $context['question_answers'] = array();
  415. $request = $smcFunc['db_query']('', '
  416. SELECT id_question, lngfile, question, answers
  417. FROM {db_prefix}qanda'
  418. );
  419. while ($row = $smcFunc['db_fetch_assoc']($request))
  420. {
  421. $lang = strtr($row['lngfile'], array('-utf8' => ''));
  422. $context['question_answers'][$row['id_question']] = array(
  423. 'lngfile' => $lang,
  424. 'question' => $row['question'],
  425. 'answers' => unserialize($row['answers']),
  426. );
  427. $context['qa_by_lang'][$lang][] = $row['id_question'];
  428. }
  429. // Thirdly, push some JavaScript for the form to make it work.
  430. addInlineJavascript('
  431. var nextrow = ' . (!empty($context['question_answers']) ? max(array_keys($context['question_answers'])) + 1 : 1) . ';
  432. $(".qa_link a").click(function() {
  433. var id = $(this).parent().attr("id").substring(6);
  434. $("#qa_fs_" + id).show();
  435. $(this).parent().hide();
  436. });
  437. $(".qa_fieldset legend a").click(function() {
  438. var id = $(this).closest("fieldset").attr("id").substring(6);
  439. $("#qa_dt_" + id).show();
  440. $(this).closest("fieldset").hide();
  441. });
  442. $(".qa_add_question a").click(function() {
  443. var id = $(this).closest("fieldset").attr("id").substring(6);
  444. $(\'<dt><input type="text" name="question[\' + id + \'][\' + nextrow + \']" value="" size="50" class="input_text verification_question" /></dt><dd><input type="text" name="answer[\' + id + \'][\' + nextrow + \'][]" value="" size="50" class="input_text verification_answer" / ><div class="qa_add_answer"><a href="javascript:void(0);" onclick="return addAnswer(this);">[ \' + ' . JavaScriptEscape($txt['setup_verification_add_answer']) . ' + \' ]</a></div></dd>\').insertBefore($(this).parent());
  445. nextrow++;
  446. });
  447. function addAnswer(obj)
  448. {
  449. var attr = $(obj).closest("dd").find(".verification_answer:last").attr("name");
  450. $(\'<input type="text" name="\' + attr + \'" value="" size="50" class="input_text verification_answer" />\').insertBefore($(obj).closest("div"));
  451. return false;
  452. }
  453. $("#qa_dt_' . $language . ' a").click();', true);
  454. // Will need the utility functions from here.
  455. require_once($sourcedir . '/ManageServer.php');
  456. // Saving?
  457. if (isset($_GET['save']))
  458. {
  459. checkSession();
  460. // Fix PM settings.
  461. $_POST['pm_spam_settings'] = (int) $_POST['max_pm_recipients'] . ',' . (int) $_POST['pm_posts_verification'] . ',' . (int) $_POST['pm_posts_per_hour'];
  462. // Hack in guest requiring verification!
  463. if (empty($_POST['posts_require_captcha']) && !empty($_POST['guests_require_captcha']))
  464. $_POST['posts_require_captcha'] = -1;
  465. $save_vars = $config_vars;
  466. unset($save_vars['pm1'], $save_vars['pm2'], $save_vars['pm3'], $save_vars['guest_verify']);
  467. $save_vars[] = array('text', 'pm_spam_settings');
  468. // Handle verification questions.
  469. $changes = array(
  470. 'insert' => array(),
  471. 'replace' => array(),
  472. 'delete' => array(),
  473. );
  474. $qs_per_lang = array();
  475. foreach ($context['qa_languages'] as $lang_id => $dummy)
  476. {
  477. // If we had some questions for this language before, but don't now, delete everything from that language.
  478. if ((!isset($_POST['question'][$lang_id]) || !is_array($_POST['question'][$lang_id])) && !empty($context['qa_by_lang'][$lang_id]))
  479. $changes['delete'] = array_merge($questions['delete'], $context['qa_by_lang'][$lang_id]);
  480. // Now step through and see if any existing questions no longer exist.
  481. if (!empty($context['qa_by_lang'][$lang_id]))
  482. foreach ($context['qa_by_lang'][$lang_id] as $q_id)
  483. if (empty($_POST['question'][$lang_id][$q_id]))
  484. $changes['delete'][] = $q_id;
  485. // Now let's see if there are new questions or ones that need updating.
  486. foreach ($_POST['question'][$lang_id] as $q_id => $question)
  487. {
  488. // Ignore junky ids.
  489. $q_id = (int) $q_id;
  490. if ($q_id <= 0)
  491. continue;
  492. // Check the question isn't empty (because they want to delete it?)
  493. if (empty($question) || trim($question) == '')
  494. {
  495. if (isset($context['question_answers'][$q_id]))
  496. $changes['delete'][] = $q_id;
  497. continue;
  498. }
  499. $question = $smcFunc['htmlspecialchars'](trim($question));
  500. // Get the answers. Firstly check there actually might be some.
  501. if (!isset($_POST['answer'][$lang_id][$q_id]) || !is_array($_POST['answer'][$lang_id][$q_id]))
  502. {
  503. if (isset($context['question_answers'][$q_id]))
  504. $changes['delete'][] = $q_id;
  505. continue;
  506. }
  507. // Now get them and check that they might be viable.
  508. $answers = array();
  509. foreach ($_POST['answer'][$lang_id][$q_id] as $answer)
  510. if (!empty($answer) && trim($answer) !== '')
  511. $answers[] = $smcFunc['htmlspecialchars'](trim($answer));
  512. if (empty($answers))
  513. {
  514. if (isset($context['question_answers'][$q_id]))
  515. $changes['delete'][] = $q_id;
  516. continue;
  517. }
  518. $answers = serialize($answers);
  519. // At this point we know we have a question and some answers. What are we doing with it?
  520. if (!isset($context['question_answers'][$q_id]))
  521. {
  522. // New question. Now, we don't want to randomly consume ids, so we'll set those, rather than trusting the browser's supplied ids.
  523. $changes['insert'][] = array($lang_id, $question, $answers);
  524. }
  525. else
  526. {
  527. // It's an existing question. Let's see what's changed, if anything.
  528. if ($lang_id != $context['question_answers'][$q_id]['lngfile'] || $question != $context['question_answers'][$q_id]['question'] || $answers != $context['question_answers'][$q_id]['answers'])
  529. $changes['replace'][$q_id] = array('lngfile' => $lang_id, 'question' => $question, 'answers' => $answers);
  530. }
  531. if (!isset($qs_per_lang[$lang_id]))
  532. $qs_per_lang[$lang_id] = 0;
  533. $qs_per_lang[$lang_id]++;
  534. }
  535. }
  536. // OK, so changes?
  537. if (!empty($changes['delete']))
  538. {
  539. $smcFunc['db_query']('', '
  540. DELETE FROM {db_prefix}qanda
  541. WHERE id_question IN ({array_int:questions})',
  542. array(
  543. 'questions' => $changes['delete'],
  544. )
  545. );
  546. }
  547. if (!empty($changes['replace']))
  548. {
  549. foreach ($changes['replace'] as $q_id => $question)
  550. {
  551. $smcFunc['db_query']('', '
  552. UPDATE {db_prefix}qanda
  553. SET lngfile = {string:lngfile},
  554. question = {string:question},
  555. answers = {string:answers}
  556. WHERE id_question = {int:id_question}',
  557. array(
  558. 'id_question' => $q_id,
  559. 'lngfile' => $question['lngfile'],
  560. 'question' => $question['question'],
  561. 'answers' => $question['answers'],
  562. )
  563. );
  564. }
  565. }
  566. if (!empty($changes['insert']))
  567. {
  568. $smcFunc['db_insert']('insert',
  569. '{db_prefix}qanda',
  570. array('lngfile' => 'string-50', 'question' => 'string-255', 'answers' => 'string-65534'),
  571. $changes['insert'],
  572. array('id_question')
  573. );
  574. }
  575. // Lastly, the count of messages needs to be no more than the lowest number of questions for any one language.
  576. $count_questions = empty($qs_per_lang) ? 0 : min($qs_per_lang);
  577. if (empty($count_questions) || $_POST['qa_verification_number'] > $count_questions)
  578. $_POST['qa_verification_number'] = $count_questions;
  579. call_integration_hook('integrate_save_spam_settings', array(&$save_vars));
  580. // Now save.
  581. saveDBSettings($save_vars);
  582. $_SESSION['adm-save'] = true;
  583. cache_put_data('verificationQuestions', null, 300);
  584. redirectexit('action=admin;area=antispam');
  585. }
  586. $character_range = array_merge(range('A', 'H'), array('K', 'M', 'N', 'P', 'R'), range('T', 'Y'));
  587. $_SESSION['visual_verification_code'] = '';
  588. for ($i = 0; $i < 6; $i++)
  589. $_SESSION['visual_verification_code'] .= $character_range[array_rand($character_range)];
  590. // Some javascript for CAPTCHA.
  591. $context['settings_post_javascript'] = '';
  592. if ($context['use_graphic_library'])
  593. $context['settings_post_javascript'] .= '
  594. function refreshImages()
  595. {
  596. var imageType = document.getElementById(\'visual_verification_type\').value;
  597. document.getElementById(\'verification_image\').src = \'' . $context['verification_image_href'] . ';type=\' + imageType;
  598. }';
  599. // Show the image itself, or text saying we can't.
  600. if ($context['use_graphic_library'])
  601. $config_vars['vv']['postinput'] = '<br /><img src="' . $context['verification_image_href'] . ';type=' . (empty($modSettings['visual_verification_type']) ? 0 : $modSettings['visual_verification_type']) . '" alt="' . $txt['setting_image_verification_sample'] . '" id="verification_image" /><br />';
  602. else
  603. $config_vars['vv']['postinput'] = '<br /><span class="smalltext">' . $txt['setting_image_verification_nogd'] . '</span>';
  604. // Hack for PM spam settings.
  605. list ($modSettings['max_pm_recipients'], $modSettings['pm_posts_verification'], $modSettings['pm_posts_per_hour']) = explode(',', $modSettings['pm_spam_settings']);
  606. // Hack for guests requiring verification.
  607. $modSettings['guests_require_captcha'] = !empty($modSettings['posts_require_captcha']);
  608. $modSettings['posts_require_captcha'] = !isset($modSettings['posts_require_captcha']) || $modSettings['posts_require_captcha'] == -1 ? 0 : $modSettings['posts_require_captcha'];
  609. // Some minor javascript for the guest post setting.
  610. if ($modSettings['posts_require_captcha'])
  611. $context['settings_post_javascript'] .= '
  612. document.getElementById(\'guests_require_captcha\').disabled = true;';
  613. // And everything else.
  614. $context['post_url'] = $scripturl . '?action=admin;area=antispam;save';
  615. $context['settings_title'] = $txt['antispam_Settings'];
  616. $context['page_title'] = $txt['antispam_title'];
  617. $context['sub_template'] = 'show_settings';
  618. $context[$context['admin_menu_name']]['tab_data'] = array(
  619. 'title' => $txt['antispam_title'],
  620. 'description' => $txt['antispam_Settings_desc'],
  621. );
  622. prepareDBSettingContext($config_vars);
  623. }
  624. /**
  625. * You'll never guess what this function does...
  626. *
  627. * @param $return_config
  628. */
  629. function ModifySignatureSettings($return_config = false)
  630. {
  631. global $context, $txt, $modSettings, $sig_start, $smcFunc, $helptxt, $scripturl;
  632. $config_vars = array(
  633. // Are signatures even enabled?
  634. array('check', 'signature_enable'),
  635. '',
  636. // Tweaking settings!
  637. array('int', 'signature_max_length', 'subtext' => $txt['zero_for_no_limit']),
  638. array('int', 'signature_max_lines', 'subtext' => $txt['zero_for_no_limit']),
  639. array('int', 'signature_max_font_size', 'subtext' => $txt['zero_for_no_limit']),
  640. array('check', 'signature_allow_smileys', 'onclick' => 'document.getElementById(\'signature_max_smileys\').disabled = !this.checked;'),
  641. array('int', 'signature_max_smileys', 'subtext' => $txt['zero_for_no_limit']),
  642. '',
  643. // Image settings.
  644. array('int', 'signature_max_images', 'subtext' => $txt['signature_max_images_note']),
  645. array('int', 'signature_max_image_width', 'subtext' => $txt['zero_for_no_limit']),
  646. array('int', 'signature_max_image_height', 'subtext' => $txt['zero_for_no_limit']),
  647. '',
  648. array('bbc', 'signature_bbc'),
  649. );
  650. call_integration_hook('integrate_signature_settings', array(&$config_vars));
  651. if ($return_config)
  652. return $config_vars;
  653. // Setup the template.
  654. $context['page_title'] = $txt['signature_settings'];
  655. $context['sub_template'] = 'show_settings';
  656. // Disable the max smileys option if we don't allow smileys at all!
  657. $context['settings_post_javascript'] = 'document.getElementById(\'signature_max_smileys\').disabled = !document.getElementById(\'signature_allow_smileys\').checked;';
  658. // Load all the signature settings.
  659. list ($sig_limits, $sig_bbc) = explode(':', $modSettings['signature_settings']);
  660. $sig_limits = explode(',', $sig_limits);
  661. $disabledTags = !empty($sig_bbc) ? explode(',', $sig_bbc) : array();
  662. // Applying to ALL signatures?!!
  663. if (isset($_GET['apply']))
  664. {
  665. // Security!
  666. checkSession('get');
  667. $sig_start = time();
  668. // This is horrid - but I suppose some people will want the option to do it.
  669. $_GET['step'] = isset($_GET['step']) ? (int) $_GET['step'] : 0;
  670. $done = false;
  671. $request = $smcFunc['db_query']('', '
  672. SELECT MAX(id_member)
  673. FROM {db_prefix}members',
  674. array(
  675. )
  676. );
  677. list ($context['max_member']) = $smcFunc['db_fetch_row']($request);
  678. $smcFunc['db_free_result']($request);
  679. while (!$done)
  680. {
  681. $changes = array();
  682. $request = $smcFunc['db_query']('', '
  683. SELECT id_member, signature
  684. FROM {db_prefix}members
  685. WHERE id_member BETWEEN ' . $_GET['step'] . ' AND ' . $_GET['step'] . ' + 49
  686. AND id_group != {int:admin_group}
  687. AND FIND_IN_SET({int:admin_group}, additional_groups) = 0',
  688. array(
  689. 'admin_group' => 1,
  690. )
  691. );
  692. while ($row = $smcFunc['db_fetch_assoc']($request))
  693. {
  694. // Apply all the rules we can realistically do.
  695. $sig = strtr($row['signature'], array('<br />' => "\n"));
  696. // Max characters...
  697. if (!empty($sig_limits[1]))
  698. $sig = $smcFunc['substr']($sig, 0, $sig_limits[1]);
  699. // Max lines...
  700. if (!empty($sig_limits[2]))
  701. {
  702. $count = 0;
  703. for ($i = 0; $i < strlen($sig); $i++)
  704. {
  705. if ($sig[$i] == "\n")
  706. {
  707. $count++;
  708. if ($count >= $sig_limits[2])
  709. $sig = substr($sig, 0, $i) . strtr(substr($sig, $i), array("\n" => ' '));
  710. }
  711. }
  712. }
  713. if (!empty($sig_limits[7]) && preg_match_all('~\[size=([\d\.]+)?(px|pt|em|x-large|larger)~i', $sig, $matches) !== false && isset($matches[2]))
  714. {
  715. foreach ($matches[1] as $ind => $size)
  716. {
  717. $limit_broke = 0;
  718. // Attempt to allow all sizes of abuse, so to speak.
  719. if ($matches[2][$ind] == 'px' && $size > $sig_limits[7])
  720. $limit_broke = $sig_limits[7] . 'px';
  721. elseif ($matches[2][$ind] == 'pt' && $size > ($sig_limits[7] * 0.75))
  722. $limit_broke = ((int) $sig_limits[7] * 0.75) . 'pt';
  723. elseif ($matches[2][$ind] == 'em' && $size > ((float) $sig_limits[7] / 16))
  724. $limit_broke = ((float) $sig_limits[7] / 16) . 'em';
  725. elseif ($matches[2][$ind] != 'px' && $matches[2][$ind] != 'pt' && $matches[2][$ind] != 'em' && $sig_limits[7] < 18)
  726. $limit_broke = 'large';
  727. if ($limit_broke)
  728. $sig = str_replace($matches[0][$ind], '[size=' . $sig_limits[7] . 'px', $sig);
  729. }
  730. }
  731. // Stupid images - this is stupidly, stupidly challenging.
  732. if ((!empty($sig_limits[3]) || !empty($sig_limits[5]) || !empty($sig_limits[6])))
  733. {
  734. $replaces = array();
  735. $img_count = 0;
  736. // Get all BBC tags...
  737. preg_match_all('~\[img(\s+width=([\d]+))?(\s+height=([\d]+))?(\s+width=([\d]+))?\s*\](?:<br />)*([^<">]+?)(?:<br />)*\[/img\]~i', $sig, $matches);
  738. // ... and all HTML ones.
  739. preg_match_all('~&lt;img\s+src=(?:&quot;)?((?:http://|ftp://|https://|ftps://).+?)(?:&quot;)?(?:\s+alt=(?:&quot;)?(.*?)(?:&quot;)?)?(?:\s?/)?&gt;~i', $sig, $matches2, PREG_PATTERN_ORDER);
  740. // And stick the HTML in the BBC.
  741. if (!empty($matches2))
  742. {
  743. foreach ($matches2[0] as $ind => $dummy)
  744. {
  745. $matches[0][] = $matches2[0][$ind];
  746. $matches[1][] = '';
  747. $matches[2][] = '';
  748. $matches[3][] = '';
  749. $matches[4][] = '';
  750. $matches[5][] = '';
  751. $matches[6][] = '';
  752. $matches[7][] = $matches2[1][$ind];
  753. }
  754. }
  755. // Try to find all the images!
  756. if (!empty($matches))
  757. {
  758. $image_count_holder = array();
  759. foreach ($matches[0] as $key => $image)
  760. {
  761. $width = -1; $height = -1;
  762. $img_count++;
  763. // Too many images?
  764. if (!empty($sig_limits[3]) && $img_count > $sig_limits[3])
  765. {
  766. // If we've already had this before we only want to remove the excess.
  767. if (isset($image_count_holder[$image]))
  768. {
  769. $img_offset = -1;
  770. $rep_img_count = 0;
  771. while ($img_offset !== false)
  772. {
  773. $img_offset = strpos($sig, $image, $img_offset + 1);
  774. $rep_img_count++;
  775. if ($rep_img_count > $image_count_holder[$image])
  776. {
  777. // Only replace the excess.
  778. $sig = substr($sig, 0, $img_offset) . str_replace($image, '', substr($sig, $img_offset));
  779. // Stop looping.
  780. $img_offset = false;
  781. }
  782. }
  783. }
  784. else
  785. $replaces[$image] = '';
  786. continue;
  787. }
  788. // Does it have predefined restraints? Width first.
  789. if ($matches[6][$key])
  790. $matches[2][$key] = $matches[6][$key];
  791. if ($matches[2][$key] && $sig_limits[5] && $matches[2][$key] > $sig_limits[5])
  792. {
  793. $width = $sig_limits[5];
  794. $matches[4][$key] = $matches[4][$key] * ($width / $matches[2][$key]);
  795. }
  796. elseif ($matches[2][$key])
  797. $width = $matches[2][$key];
  798. // ... and height.
  799. if ($matches[4][$key] && $sig_limits[6] && $matches[4][$key] > $sig_limits[6])
  800. {
  801. $height = $sig_limits[6];
  802. if ($width != -1)
  803. $width = $width * ($height / $matches[4][$key]);
  804. }
  805. elseif ($matches[4][$key])
  806. $height = $matches[4][$key];
  807. // If the dimensions are still not fixed - we need to check the actual image.
  808. if (($width == -1 && $sig_limits[5]) || ($height == -1 && $sig_limits[6]))
  809. {
  810. $sizes = url_image_size($matches[7][$key]);
  811. if (is_array($sizes))
  812. {
  813. // Too wide?
  814. if ($sizes[0] > $sig_limits[5] && $sig_limits[5])
  815. {
  816. $width = $sig_limits[5];
  817. $sizes[1] = $sizes[1] * ($width / $sizes[0]);
  818. }
  819. // Too high?
  820. if ($sizes[1] > $sig_limits[6] && $sig_limits[6])
  821. {
  822. $height = $sig_limits[6];
  823. if ($width == -1)
  824. $width = $sizes[0];
  825. $width = $width * ($height / $sizes[1]);
  826. }
  827. elseif ($width != -1)
  828. $height = $sizes[1];
  829. }
  830. }
  831. // Did we come up with some changes? If so remake the string.
  832. if ($width != -1 || $height != -1)
  833. {
  834. $replaces[$image] = '[img' . ($width != -1 ? ' width=' . round($width) : '') . ($height != -1 ? ' height=' . round($height) : '') . ']' . $matches[7][$key] . '[/img]';
  835. }
  836. // Record that we got one.
  837. $image_count_holder[$image] = isset($image_count_holder[$image]) ? $image_count_holder[$image] + 1 : 1;
  838. }
  839. if (!empty($replaces))
  840. $sig = str_replace(array_keys($replaces), array_values($replaces), $sig);
  841. }
  842. }
  843. // Try to fix disabled tags.
  844. if (!empty($disabledTags))
  845. {
  846. $sig = preg_replace('~\[(?:' . implode('|', $disabledTags) . ').+?\]~i', '', $sig);
  847. $sig = preg_replace('~\[/(?:' . implode('|', $disabledTags) . ')\]~i', '', $sig);
  848. }
  849. $sig = strtr($sig, array("\n" => '<br />'));
  850. call_integration_hook('integrate_apply_signature_settings', array(&$sig, $sig_limits, $disabledTags));
  851. if ($sig != $row['signature'])
  852. $changes[$row['id_member']] = $sig;
  853. }
  854. if ($smcFunc['db_num_rows']($request) == 0)
  855. $done = true;
  856. $smcFunc['db_free_result']($request);
  857. // Do we need to delete what we have?
  858. if (!empty($changes))
  859. {
  860. foreach ($changes as $id => $sig)
  861. $smcFunc['db_query']('', '
  862. UPDATE {db_prefix}members
  863. SET signature = {string:signature}
  864. WHERE id_member = {int:id_member}',
  865. array(
  866. 'id_member' => $id,
  867. 'signature' => $sig,
  868. )
  869. );
  870. }
  871. $_GET['step'] += 50;
  872. if (!$done)
  873. pauseSignatureApplySettings();
  874. }
  875. $settings_applied = true;
  876. }
  877. $context['signature_settings'] = array(
  878. 'enable' => isset($sig_limits[0]) ? $sig_limits[0] : 0,
  879. 'max_length' => isset($sig_limits[1]) ? $sig_limits[1] : 0,
  880. 'max_lines' => isset($sig_limits[2]) ? $sig_limits[2] : 0,
  881. 'max_images' => isset($sig_limits[3]) ? $sig_limits[3] : 0,
  882. 'allow_smileys' => isset($sig_limits[4]) && $sig_limits[4] == -1 ? 0 : 1,
  883. 'max_smileys' => isset($sig_limits[4]) && $sig_limits[4] != -1 ? $sig_limits[4] : 0,
  884. 'max_image_width' => isset($sig_limits[5]) ? $sig_limits[5] : 0,
  885. 'max_image_height' => isset($sig_limits[6]) ? $sig_limits[6] : 0,
  886. 'max_font_size' => isset($sig_limits[7]) ? $sig_limits[7] : 0,
  887. );
  888. // Temporarily make each setting a modSetting!
  889. foreach ($context['signature_settings'] as $key => $value)
  890. $modSettings['signature_' . $key] = $value;
  891. // Make sure we check the right tags!
  892. $modSettings['bbc_disabled_signature_bbc'] = $disabledTags;
  893. // Saving?
  894. if (isset($_GET['save']))
  895. {
  896. checkSession();
  897. // Clean up the tag stuff!
  898. $bbcTags = array();
  899. foreach (parse_bbc(false) as $tag)
  900. $bbcTags[] = $tag['tag'];
  901. if (!isset($_POST['signature_bbc_enabledTags']))
  902. $_POST['signature_bbc_enabledTags'] = array();
  903. elseif (!is_array($_POST['signature_bbc_enabledTags']))
  904. $_POST['signature_bbc_enabledTags'] = array($_POST['signature_bbc_enabledTags']);
  905. $sig_limits = array();
  906. foreach ($context['signature_settings'] as $key => $value)
  907. {
  908. if ($key == 'allow_smileys')
  909. continue;
  910. elseif ($key == 'max_smileys' && empty($_POST['signature_allow_smileys']))
  911. $sig_limits[] = -1;
  912. else
  913. $sig_limits[] = !empty($_POST['signature_' . $key]) ? max(1, (int) $_POST['signature_' . $key]) : 0;
  914. }
  915. call_integration_hook('integrate_save_signature_settings', array(&$sig_limits, &$bbcTags));
  916. $_POST['signature_settings'] = implode(',', $sig_limits) . ':' . implode(',', array_diff($bbcTags, $_POST['signature_bbc_enabledTags']));
  917. // Even though we have practically no settings let's keep the convention going!
  918. $save_vars = array();
  919. $save_vars[] = array('text', 'signature_settings');
  920. saveDBSettings($save_vars);
  921. $_SESSION['adm-save'] = true;
  922. redirectexit('action=admin;area=featuresettings;sa=sig');
  923. }
  924. $context['post_url'] = $scripturl . '?action=admin;area=featuresettings;save;sa=sig';
  925. $context['settings_title'] = $txt['signature_settings'];
  926. $context['settings_message'] = !empty($settings_applied) ? '<div class="infobox">' . $txt['signature_settings_applied'] . '</div>' : '<p class="centertext">' . sprintf($txt['signature_settings_warning'], $context['session_id'], $context['session_var']) . '</p>';
  927. prepareDBSettingContext($config_vars);
  928. }
  929. /**
  930. * Just pause the signature applying thing.
  931. */
  932. function pauseSignatureApplySettings()
  933. {
  934. global $context, $txt, $sig_start;
  935. // Try get more time...
  936. @set_time_limit(600);
  937. if (function_exists('apache_reset_timeout'))
  938. @apache_reset_timeout();
  939. // Have we exhausted all the time we allowed?
  940. if (time() - array_sum(explode(' ', $sig_start)) < 3)
  941. return;
  942. $context['continue_get_data'] = '?action=admin;area=featuresettings;sa=sig;apply;step=' . $_GET['step'] . ';' . $context['session_var'] . '=' . $context['session_id'];
  943. $context['page_title'] = $txt['not_done_title'];
  944. $context['continue_post_data'] = '';
  945. $context['continue_countdown'] = '2';
  946. $context['sub_template'] = 'not_done';
  947. // Specific stuff to not break this template!
  948. $context[$context['admin_menu_name']]['current_subsection'] = 'sig';
  949. // Get the right percent.
  950. $context['continue_percent'] = round(($_GET['step'] / $context['max_member']) * 100);
  951. // Never more than 100%!
  952. $context['continue_percent'] = min($context['continue_percent'], 100);
  953. obExit();
  954. }
  955. /**
  956. * Show all the custom profile fields available to the user.
  957. */
  958. function ShowCustomProfiles()
  959. {
  960. global $txt, $scripturl, $context, $settings, $sc, $smcFunc;
  961. global $modSettings, $sourcedir;
  962. $context['page_title'] = $txt['custom_profile_title'];
  963. $context['sub_template'] = 'show_custom_profile';
  964. // What about standard fields they can tweak?
  965. $standard_fields = array('icq', 'aim', 'yim', 'skype', 'location', 'gender', 'website', 'personal_text', 'posts', 'warning_status');
  966. // What fields can't you put on the registration page?
  967. $context['fields_no_registration'] = array('posts', 'warning_status');
  968. // Are we saving any standard field changes?
  969. if (isset($_POST['save']))
  970. {
  971. checkSession();
  972. validateToken('admin-scp');
  973. // Do the active ones first.
  974. $disable_fields = array_flip($standard_fields);
  975. if (!empty($_POST['active']))
  976. {
  977. foreach ($_POST['active'] as $value)
  978. if (isset($disable_fields[$value]))
  979. unset($disable_fields[$value]);
  980. }
  981. // What we have left!
  982. $changes['disabled_profile_fields'] = empty($disable_fields) ? '' : implode(',', array_keys($disable_fields));
  983. // Things we want to show on registration?
  984. $reg_fields = array();
  985. if (!empty($_POST['reg']))
  986. {
  987. foreach ($_POST['reg'] as $value)
  988. if (in_array($value, $standard_fields) && !isset($disable_fields[$value]))
  989. $reg_fields[] = $value;
  990. }
  991. // What we have left!
  992. $changes['registration_fields'] = empty($reg_fields) ? '' : implode(',', $reg_fields);
  993. $_SESSION['adm-save'] = true;
  994. if (!empty($changes))
  995. updateSettings($changes);
  996. }
  997. createToken('admin-scp');
  998. require_once($sourcedir . '/Subs-List.php');
  999. $listOptions = array(
  1000. 'id' => 'standard_profile_fields',
  1001. 'title' => $txt['standard_profile_title'],
  1002. 'base_href' => $scripturl . '?action=admin;area=featuresettings;sa=profile',
  1003. 'get_items' => array(
  1004. 'function' => 'list_getProfileFields',
  1005. 'params' => array(
  1006. true,
  1007. ),
  1008. ),
  1009. 'columns' => array(
  1010. 'field' => array(
  1011. 'header' => array(
  1012. 'value' => $txt['standard_profile_field'],
  1013. ),
  1014. 'data' => array(
  1015. 'db' => 'label',
  1016. 'style' => 'width: 60%;',
  1017. ),
  1018. ),
  1019. 'active' => array(
  1020. 'header' => array(
  1021. 'value' => $txt['custom_edit_active'],
  1022. 'class' => 'centercol',
  1023. ),
  1024. 'data' => array(
  1025. 'function' => create_function('$rowData', '
  1026. $isChecked = $rowData[\'disabled\'] ? \'\' : \' checked="checked"\';
  1027. $onClickHandler = $rowData[\'can_show_register\'] ? sprintf(\'onclick="document.getElementById(\\\'reg_%1$s\\\').disabled = !this.checked;"\', $rowData[\'id\']) : \'\';
  1028. return sprintf(\'<input type="checkbox" name="active[]" id="active_%1$s" value="%1$s" class="input_check"%2$s%3$s />\', $rowData[\'id\'], $isChecked, $onClickHandler);
  1029. '),
  1030. 'style' => 'width: 20%;',
  1031. 'class' => 'centercol',
  1032. ),
  1033. ),
  1034. 'show_on_registration' => array(
  1035. 'header' => array(
  1036. 'value' => $txt['custom_edit_registration'],
  1037. 'class' => 'centercol',
  1038. ),
  1039. 'data' => array(
  1040. 'function' => create_function('$rowData', '
  1041. $isChecked = $rowData[\'on_register\'] && !$rowData[\'disabled\'] ? \' checked="checked"\' : \'\';
  1042. $isDisabled = $rowData[\'can_show_register\'] ? \'\' : \' disabled="disabled"\';
  1043. return sprintf(\'<input type="checkbox" name="reg[]" id="reg_%1$s" value="%1$s" class="input_check"%2$s%3$s />\', $rowData[\'id\'], $isChecked, $isDisabled);
  1044. '),
  1045. 'style' => 'width: 20%;',
  1046. 'class' => 'centercol',
  1047. ),
  1048. ),
  1049. ),
  1050. 'form' => array(
  1051. 'href' => $scripturl . '?action=admin;area=featuresettings;sa=profile',
  1052. 'name' => 'standardProfileFields',
  1053. 'token' => 'admin-scp',
  1054. ),
  1055. 'additional_rows' => array(
  1056. array(
  1057. 'position' => 'below_table_data',
  1058. 'value' => '<input type="submit" name="save" value="' . $txt['save'] . '" class="button_submit" />',
  1059. ),
  1060. ),
  1061. );
  1062. createList($listOptions);
  1063. $listOptions = array(
  1064. 'id' => 'custom_profile_fields',
  1065. 'title' => $txt['custom_profile_title'],
  1066. 'base_href' => $scripturl . '?action=admin;area=featuresettings;sa=profile',
  1067. 'default_sort_col' => 'field_name',
  1068. 'no_items_label' => $txt['custom_profile_none'],
  1069. 'items_per_page' => 25,
  1070. 'get_items' => array(
  1071. 'function' => 'list_getProfileFields',
  1072. 'params' => array(
  1073. false,
  1074. ),
  1075. ),
  1076. 'get_count' => array(
  1077. 'function' => 'list_getProfileFieldSize',
  1078. ),
  1079. 'columns' => array(
  1080. 'field_name' => array(
  1081. 'header' => array(
  1082. 'value' => $txt['custom_profile_fieldname'],
  1083. ),
  1084. 'data' => array(
  1085. 'function' => create_function('$rowData', '
  1086. global $scripturl;
  1087. return sprintf(\'<a href="%1$s?action=admin;area=featuresettings;sa=profileedit;fid=%2$d">%3$s</a><div class="smalltext">%4$s</div>\', $scripturl, $rowData[\'id_field\'], $rowData[\'field_name\'], $rowData[\'field_desc\']);
  1088. '),
  1089. 'style' => 'width: 62%;',
  1090. ),
  1091. 'sort' => array(
  1092. 'default' => 'field_name',
  1093. 'reverse' => 'field_name DESC',
  1094. ),
  1095. ),
  1096. 'field_type' => array(
  1097. 'header' => array(
  1098. 'value' => $txt['custom_profile_fieldtype'],
  1099. ),
  1100. 'data' => array(
  1101. 'function' => create_function('$rowData', '
  1102. global $txt;
  1103. $textKey = sprintf(\'custom_profile_type_%1$s\', $rowData[\'field_type\']);
  1104. return isset($txt[$textKey]) ? $txt[$textKey] : $textKey;
  1105. '),
  1106. 'style' => 'width: 15%;',
  1107. ),
  1108. 'sort' => array(
  1109. 'default' => 'field_type',
  1110. 'reverse' => 'field_type DESC',
  1111. ),
  1112. ),
  1113. 'active' => array(
  1114. 'header' => array(
  1115. 'value' => $txt['custom_profile_active'],
  1116. ),
  1117. 'data' => array(
  1118. 'function' => create_function('$rowData', '
  1119. global $txt;
  1120. return $rowData[\'active\'] ? $txt[\'yes\'] : $txt[\'no\'];
  1121. '),
  1122. 'style' => 'width: 8%;',
  1123. ),
  1124. 'sort' => array(
  1125. 'default' => 'active DESC',
  1126. 'reverse' => 'active',
  1127. ),
  1128. ),
  1129. 'placement' => array(
  1130. 'header' => array(
  1131. 'value' => $txt['custom_profile_placement'],
  1132. ),
  1133. 'data' => array(
  1134. 'function' => create_function('$rowData', '
  1135. global $txt;
  1136. return $txt[\'custom_profile_placement_\' . (empty($rowData[\'placement\']) ? \'standard\' : ($rowData[\'placement\'] == 1 ? \'withicons\' : \'abovesignature\'))];
  1137. '),
  1138. 'style' => 'width: 8%;',
  1139. ),
  1140. 'sort' => array(
  1141. 'default' => 'placement DESC',
  1142. 'reverse' => 'placement',
  1143. ),
  1144. ),
  1145. 'show_on_registration' => array(
  1146. 'data' => array(
  1147. 'sprintf' => array(
  1148. 'format' => '<a href="' . $scripturl . '?action=admin;area=featuresettings;sa=profileedit;fid=%1$s">' . $txt['modify'] . '</a>',
  1149. 'params' => array(
  1150. 'id_field' => false,
  1151. ),
  1152. ),
  1153. 'style' => 'width: 15%;',
  1154. ),
  1155. ),
  1156. ),
  1157. 'form' => array(
  1158. 'href' => $scripturl . '?action=admin;area=featuresettings;sa=profileedit',
  1159. 'name' => 'customProfileFields',
  1160. ),
  1161. 'additional_rows' => array(
  1162. array(
  1163. 'position' => 'below_table_data',
  1164. 'value' => '<input type="submit" name="new" value="' . $txt['custom_profile_make_new'] . '" class="button_submit" />',
  1165. ),
  1166. ),
  1167. );
  1168. createList($listOptions);
  1169. // There are two different ways we could get to this point. To keep it simple, they both do
  1170. // the same basic thing.
  1171. if (isset($_SESSION['adm-save']))
  1172. {
  1173. $context['saved_successful'] = true;
  1174. unset ($_SESSION['adm-save']);
  1175. }
  1176. }
  1177. /**
  1178. * Callback for createList().
  1179. *
  1180. * @param $start
  1181. * @param $items_per_page
  1182. * @param $sort
  1183. * @param $standardFields
  1184. */
  1185. function list_getProfileFields($start, $items_per_page, $sort, $standardFields)
  1186. {
  1187. global $txt, $modSettings, $smcFunc;
  1188. $list = array();
  1189. if ($standardFields)
  1190. {
  1191. $standard_fields = array('icq', 'aim', 'yim', 'skype', 'location', 'gender', 'website', 'personal_text', 'posts', 'warning_status');
  1192. $fields_no_registration = array('posts', 'warning_status');
  1193. $disabled_fields = isset($modSettings['disabled_profile_fields']) ? explode(',', $modSettings['disabled_profile_fields']) : array();
  1194. $registration_fields = isset($modSettings['registration_fields']) ? explode(',', $modSettings['registration_fields']) : array();
  1195. foreach ($standard_fields as $field)
  1196. $list[] = array(
  1197. 'id' => $field,
  1198. 'label' => isset($txt['standard_profile_field_' . $field]) ? $txt['standard_profile_field_' . $field] : (isset($txt[$field]) ? $txt[$field] : $field),
  1199. 'disabled' => in_array($field, $disabled_fields),
  1200. 'on_register' => in_array($field, $registration_fields) && !in_array($field, $fields_no_registration),
  1201. 'can_show_register' => !in_array($field, $fields_no_registration),
  1202. );
  1203. }
  1204. else
  1205. {
  1206. // Load all the fields.
  1207. $request = $smcFunc['db_query']('', '
  1208. SELECT id_field, col_name, field_name, field_desc, field_type, active, placement
  1209. FROM {db_prefix}custom_fields
  1210. ORDER BY {raw:sort}
  1211. LIMIT {int:start}, {int:items_per_page}',
  1212. array(
  1213. 'sort' => $sort,
  1214. 'start' => $start,
  1215. 'items_per_page' => $items_per_page,
  1216. )
  1217. );
  1218. while ($row = $smcFunc['db_fetch_assoc']($request))
  1219. $list[] = $row;
  1220. $smcFunc['db_free_result']($request);
  1221. }
  1222. return $list;
  1223. }
  1224. /**
  1225. * Callback for createList().
  1226. */
  1227. function list_getProfileFieldSize()
  1228. {
  1229. global $smcFunc;
  1230. $request = $smcFunc['db_query']('', '
  1231. SELECT COUNT(*)
  1232. FROM {db_prefix}custom_fields',
  1233. array(
  1234. )
  1235. );
  1236. list ($numProfileFields) = $smcFunc['db_fetch_row']($request);
  1237. $smcFunc['db_free_result']($request);
  1238. return $numProfileFields;
  1239. }
  1240. /**
  1241. * Edit some profile fields?
  1242. */
  1243. function EditCustomProfiles()
  1244. {
  1245. global $txt, $scripturl, $context, $settings, $sc, $smcFunc;
  1246. // Sort out the context!
  1247. $context['fid'] = isset($_GET['fid']) ? (int) $_GET['fid'] : 0;
  1248. $context[$context['admin_menu_name']]['current_subsection'] = 'profile';
  1249. $context['page_title'] = $context['fid'] ? $txt['custom_edit_title'] : $txt['custom_add_title'];
  1250. $context['sub_template'] = 'edit_profile_field';
  1251. // Load the profile language for section names.
  1252. loadLanguage('Profile');
  1253. if ($context['fid'])
  1254. {
  1255. $request = $smcFunc['db_query']('', '
  1256. SELECT
  1257. id_field, col_name, field_name, field_desc, field_type, field_length, field_options,
  1258. show_reg, show_display, show_profile, private, active, default_value, can_search,
  1259. bbc, mask, enclose, placement
  1260. FROM {db_prefix}custom_fields
  1261. WHERE id_field = {int:current_field}',
  1262. array(
  1263. 'current_field' => $context['fid'],
  1264. )
  1265. );
  1266. $context['field'] = array();
  1267. while ($row = $smcFunc['db_fetch_assoc']($request))
  1268. {
  1269. if ($row['field_type'] == 'textarea')
  1270. @list ($rows, $cols) = @explode(',', $row['default_value']);
  1271. else
  1272. {
  1273. $rows = 3;
  1274. $cols = 30;
  1275. }
  1276. $context['field'] = array(
  1277. 'name' => $row['field_name'],
  1278. 'desc' => $row['field_desc'],
  1279. 'colname' => $row['col_name'],
  1280. 'profile_area' => $row['show_profile'],
  1281. 'reg' => $row['show_reg'],
  1282. 'display' => $row['show_display'],
  1283. 'type' => $row['field_type'],
  1284. 'max_length' => $row['field_length'],
  1285. 'rows' => $rows,
  1286. 'cols' => $cols,
  1287. 'bbc' => $row['bbc'] ? true : false,
  1288. 'default_check' => $row['field_type'] == 'check' && $row['default_value'] ? true : false,
  1289. 'default_select' => $row['field_type'] == 'select' || $row['field_type'] == 'radio' ? $row['default_value'] : '',
  1290. 'options' => strlen($row['field_options']) > 1 ? explode(',', $row['field_options']) : array('', '', ''),
  1291. 'active' => $row['active'],
  1292. 'private' => $row['private'],
  1293. 'can_search' => $row['can_search'],
  1294. 'mask' => $row['mask'],
  1295. 'regex' => substr($row['mask'], 0, 5) == 'regex' ? substr($row['mask'], 5) : '',
  1296. 'enclose' => $row['enclose'],
  1297. 'placement' => $row['placement'],
  1298. );
  1299. }
  1300. $smcFunc['db_free_result']($request);
  1301. }
  1302. // Setup the default values as needed.
  1303. if (empty($context['field']))
  1304. $context['field'] = array(
  1305. 'name' => '',
  1306. 'colname' => '???',
  1307. 'desc' => '',
  1308. 'profile_area' => 'forumprofile',
  1309. 'reg' => false,
  1310. 'display' => false,
  1311. 'type' => 'text',
  1312. 'max_length' => 255,
  1313. 'rows' => 4,
  1314. 'cols' => 30,
  1315. 'bbc' => false,
  1316. 'default_check' => false,
  1317. 'default_select' => '',
  1318. 'options' => array('', '', ''),
  1319. 'active' => true,
  1320. 'private' => false,
  1321. 'can_search' => false,
  1322. 'mask' => 'nohtml',
  1323. 'regex' => '',
  1324. 'enclose' => '',
  1325. 'placement' => 0,
  1326. );
  1327. // Are we saving?
  1328. if (isset($_POST['save']))
  1329. {
  1330. checkSession();
  1331. validateToken('admin-ecp');
  1332. // Everyone needs a name - even the (bracket) unknown...
  1333. if (trim($_POST['field_name']) == '')
  1334. redirectexit($scripturl . '?action=admin;area=featuresettings;sa=profileedit;fid=' . $_GET['fid'] . ';msg=need_name');
  1335. // Regex you say? Do a very basic test to see if the pattern is valid
  1336. if (!empty($_POST['regex']) && @preg_match($_POST['regex'], 'dummy') === false)
  1337. redirectexit($scripturl . '?action=admin;area=featuresettings;sa=profileedit;fid=' . $_GET['fid'] . ';msg=regex_error');
  1338. $_POST['field_name'] = $smcFunc['htmlspecialchars']($_POST['field_name']);
  1339. $_POST['field_desc'] = $smcFunc['htmlspecialchars']($_POST['field_desc']);
  1340. // Checkboxes...
  1341. $show_reg = isset($_POST['reg']) ? (int) $_POST['reg'] : 0;
  1342. $show_display = isset($_POST['display']) ? 1 : 0;
  1343. $bbc = isset($_POST['bbc']) ? 1 : 0;
  1344. $show_profile = $_POST['profile_area'];
  1345. $active = isset($_POST['active']) ? 1 : 0;
  1346. $private = isset($_POST['private']) ? (int) $_POST['private'] : 0;
  1347. $can_search = isset($_POST['can_search']) ? 1 : 0;
  1348. // Some masking stuff...
  1349. $mask = isset($_POST['mask']) ? $_POST['mask'] : '';
  1350. if ($mask == 'regex' && isset($_POST['regex']))
  1351. $mask .= $_POST['regex'];
  1352. $field_length = isset($_POST['max_length']) ? (int) $_POST['max_length'] : 255;
  1353. $enclose = isset($_POST['enclose']) ? $_POST['enclose'] : '';
  1354. $placement = isset($_POST['placement']) ? (int) $_POST['placement'] : 0;
  1355. // Select options?
  1356. $field_options = '';
  1357. $newOptions = array();
  1358. $default = isset($_POST['default_check']) && $_POST['field_type'] == 'check' ? 1 : '';
  1359. if (!empty($_POST['select_option']) && ($_POST['field_type'] == 'select' || $_POST['field_type'] == 'radio'))
  1360. {
  1361. foreach ($_POST['select_option'] as $k => $v)
  1362. {
  1363. // Clean, clean, clean...
  1364. $v = $smcFunc['htmlspecialchars']($v);
  1365. $v = strtr($v, array(',' => ''));
  1366. // Nada, zip, etc...
  1367. if (trim($v) == '')
  1368. continue;
  1369. // Otherwise, save it boy.
  1370. $field_options .= $v . ',';
  1371. // This is just for working out what happened with old options...
  1372. $newOptions[$k] = $v;
  1373. // Is it default?
  1374. if (isset($_POST['default_select']) && $_POST['default_select'] == $k)
  1375. $default = $v;
  1376. }
  1377. $field_options = substr($field_options, 0, -1);
  1378. }
  1379. // Text area has default has dimensions
  1380. if ($_POST['field_type'] == 'textarea')
  1381. $default = (int) $_POST['rows'] . ',' . (int) $_POST['cols'];
  1382. // Come up with the unique name?
  1383. if (empty($context['fid']))
  1384. {
  1385. $colname = $smcFunc['substr'](strtr($_POST['field_name'], array(' ' => '')), 0, 6);
  1386. preg_match('~([\w\d_-]+)~', $colname, $matches);
  1387. // If there is nothing to the name, then let's start out own - for foreign languages etc.
  1388. if (isset($matches[1]))
  1389. $colname = $initial_colname = 'cust_' . strtolower($matches[1]);
  1390. else
  1391. $colname = $initial_colname = 'cust_' . mt_rand(1, 999);
  1392. // Make sure this is unique.
  1393. // @todo This may not be the most efficient way to do this.
  1394. $unique = false;
  1395. for ($i = 0; !$unique && $i < 9; $i ++)
  1396. {
  1397. $request = $smcFunc['db_query']('', '
  1398. SELECT id_field
  1399. FROM {db_prefix}custom_fields
  1400. WHERE col_name = {string:current_column}',
  1401. array(
  1402. 'current_column' => $colname,
  1403. )
  1404. );
  1405. if ($smcFunc['db_num_rows']($request) == 0)
  1406. $unique = true;
  1407. else
  1408. $colname = $initial_colname . $i;
  1409. $smcFunc['db_free_result']($request);
  1410. }
  1411. // Still not a unique colum name? Leave it up to the user, then.
  1412. if (!$unique)
  1413. fatal_lang_error('custom_option_not_unique');
  1414. }
  1415. // Work out what to do with the user data otherwise...
  1416. else
  1417. {
  1418. // Anything going to check or select is pointless keeping - as is anything coming from check!
  1419. if (($_POST['field_type'] == 'check' && $context['field']['type'] != 'check')
  1420. || (($_POST['field_type'] == 'select' || $_POST['field_type'] == 'radio') && $context['field']['type'] != 'select' && $context['field']['type'] != 'radio')
  1421. || ($context['field']['type'] == 'check' && $_POST['field_type'] != 'check'))
  1422. {
  1423. $smcFunc['db_query']('', '
  1424. DELETE FROM {db_prefix}themes
  1425. WHERE variable = {string:current_column}
  1426. AND id_member > {int:no_member}',
  1427. array(
  1428. 'no_member' => 0,
  1429. 'current_column' => $context['field']['colname'],
  1430. )
  1431. );
  1432. }
  1433. // Otherwise - if the select is edited may need to adjust!
  1434. elseif ($_POST['field_type'] == 'select' || $_POST['field_type'] == 'radio')
  1435. {
  1436. $optionChanges = array();
  1437. $takenKeys = array();
  1438. // Work out what's changed!
  1439. foreach ($context['field']['options'] as $k => $option)
  1440. {
  1441. if (trim($option) == '')
  1442. continue;
  1443. // Still exists?
  1444. if (in_array($option, $newOptions))
  1445. {
  1446. $takenKeys[] = $k;
  1447. continue;
  1448. }
  1449. }
  1450. // Finally - have we renamed it - or is it really gone?
  1451. foreach ($optionChanges as $k => $option)
  1452. {
  1453. // Just been renamed?
  1454. if (!in_array($k, $takenKeys) && !empty($newOptions[$k]))
  1455. $smcFunc['db_query']('', '
  1456. UPDATE {db_prefix}themes
  1457. SET value = {string:new_value}
  1458. WHERE variable = {string:current_column}
  1459. AND value = {string:old_value}
  1460. AND id_member > {int:no_member}',
  1461. array(
  1462. 'no_member' => 0,
  1463. 'new_value' => $newOptions[$k],
  1464. 'current_column' => $context['field']['colname'],
  1465. 'old_value' => $option,
  1466. )
  1467. );
  1468. }
  1469. }
  1470. // @todo Maybe we should adjust based on new text length limits?
  1471. }
  1472. // Do the insertion/updates.
  1473. if ($context['fid'])
  1474. {
  1475. $smcFunc['db_query']('', '
  1476. UPDATE {db_prefix}custom_fields
  1477. SET
  1478. field_name = {string:field_name}, field_desc = {string:field_desc},
  1479. field_type = {string:field_type}, field_length = {int:field_length},
  1480. field_options = {string:field_options}, show_reg = {int:show_reg},
  1481. show_display = {int:show_display}, show_profile = {string:show_profile},
  1482. private = {int:private}, active = {int:active}, default_value = {string:default_value},
  1483. can_search = {int:can_search}, bbc = {int:bbc}, mask = {string:mask},
  1484. enclose = {string:enclose}, placement = {int:placement}
  1485. WHERE id_field = {int:current_field}',
  1486. array(
  1487. 'field_length' => $field_length,
  1488. 'show_reg' => $show_reg,
  1489. 'show_display' => $show_display,
  1490. 'private' => $private,
  1491. 'active' => $active,
  1492. 'can_search' => $can_search,
  1493. 'bbc' => $bbc,
  1494. 'current_field' => $context['fid'],
  1495. 'field_name' => $_POST['field_name'],
  1496. 'field_desc' => $_POST['field_desc'],
  1497. 'field_type' => $_POST['field_type'],
  1498. 'field_options' => $field_options,
  1499. 'show_profile' => $show_profile,
  1500. 'default_value' => $default,
  1501. 'mask' => $mask,
  1502. 'enclose' => $enclose,
  1503. 'placement' => $placement,
  1504. )
  1505. );
  1506. // Just clean up any old selects - these are a pain!
  1507. if (($_POST['field_type'] == 'select' || $_POST['field_type'] == 'radio') && !empty($newOptions))
  1508. $smcFunc['db_query']('', '
  1509. DELETE FROM {db_prefix}themes
  1510. WHERE variable = {string:current_column}
  1511. AND value NOT IN ({array_string:new_option_values})
  1512. AND id_member > {int:no_member}',
  1513. array(
  1514. 'no_member' => 0,
  1515. 'new_option_values' => $newOptions,
  1516. 'current_column' => $context['field']['colname'],
  1517. )
  1518. );
  1519. }
  1520. else
  1521. {
  1522. $smcFunc['db_insert']('',
  1523. '{db_prefix}custom_fields',
  1524. array(
  1525. 'col_name' => 'string', 'field_name' => 'string', 'field_desc' => 'string',
  1526. 'field_type' => 'string', 'field_length' => 'string', 'field_options' => 'string',
  1527. 'show_reg' => 'int', 'show_display' => 'int', 'show_profile' => 'string',
  1528. 'private' => 'int', 'active' => 'int', 'default_value' => 'string', 'can_search' => 'int',
  1529. 'bbc' => 'int', 'mask' => 'string', 'enclose' => 'string', 'placement' => 'int',
  1530. ),
  1531. array(
  1532. $colname, $_POST['field_name'], $_POST['field_desc'],
  1533. $_POST['field_type'], $field_length, $field_options,
  1534. $show_reg, $show_display, $show_profile,
  1535. $private, $active, $default, $can_search,
  1536. $bbc, $mask, $enclose, $placement,
  1537. ),
  1538. array('id_field')
  1539. );
  1540. }
  1541. // As there's currently no option to priorize certain fields over others, let's order them alphabetically.
  1542. $smcFunc['db_query']('alter_table_boards', '
  1543. ALTER TABLE {db_prefix}custom_fields
  1544. ORDER BY field_name',
  1545. array(
  1546. 'db_error_skip' => true,
  1547. )
  1548. );
  1549. }
  1550. // Deleting?
  1551. elseif (isset($_POST['delete']) && $context['field']['colname'])
  1552. {
  1553. checkSession();
  1554. validateToken('admin-ecp');
  1555. // Delete the user data first.
  1556. $smcFunc['db_query']('', '
  1557. DELETE FROM {db_prefix}themes
  1558. WHERE variable = {string:current_column}
  1559. AND id_member > {int:no_member}',
  1560. array(
  1561. 'no_member' => 0,
  1562. 'current_column' => $context['field']['colname'],
  1563. )
  1564. );
  1565. // Finally - the field itself is gone!
  1566. $smcFunc['db_query']('', '
  1567. DELETE FROM {db_prefix}custom_fields
  1568. WHERE id_field = {int:current_field}',
  1569. array(
  1570. 'current_field' => $context['fid'],
  1571. )
  1572. );
  1573. }
  1574. // Rebuild display cache etc.
  1575. if (isset($_POST['delete']) || isset($_POST['save']))
  1576. {
  1577. checkSession();
  1578. $request = $smcFunc['db_query']('', '
  1579. SELECT col_name, field_name, field_type, bbc, enclose, placement
  1580. FROM {db_prefix}custom_fields
  1581. WHERE show_display = {int:is_displayed}
  1582. AND active = {int:active}
  1583. AND private != {int:not_owner_only}
  1584. AND private != {int:not_admin_only}',
  1585. array(
  1586. 'is_displayed' => 1,
  1587. 'active' => 1,
  1588. 'not_owner_only' => 2,
  1589. 'not_admin_only' => 3,
  1590. )
  1591. );
  1592. $fields = array();
  1593. while ($row = $smcFunc['db_fetch_assoc']($request))
  1594. {
  1595. $fields[] = array(
  1596. 'colname' => strtr($row['col_name'], array('|' => '', ';' => '')),
  1597. 'title' => strtr($row['field_name'], array('|' => '', ';' => '')),
  1598. 'type' => $row['field_type'],
  1599. 'bbc' => $row['bbc'] ? '1' : '0',
  1600. 'placement' => !empty($row['placement']) ? $row['placement'] : '0',
  1601. 'enclose' => !empty($row['enclose']) ? $row['enclose'] : '',
  1602. );
  1603. }
  1604. $smcFunc['db_free_result']($request);
  1605. updateSettings(array('displayFields' => serialize($fields)));
  1606. $_SESSION['adm-save'] = true;
  1607. redirectexit('action=admin;area=featuresettings;sa=profile');
  1608. }
  1609. createToken('admin-ecp');
  1610. }
  1611. /**
  1612. * Allow to edit the settings on the pruning screen.
  1613. * @param $return_config
  1614. */
  1615. function ModifyLogSettings($return_config = false)
  1616. {
  1617. global $txt, $scripturl, $sourcedir, $context, $settings, $sc, $modSettings;
  1618. // Make sure we understand what's going on.
  1619. loadLanguage('ManageSettings');
  1620. $context['page_title'] = $txt['log_settings'];
  1621. $config_vars = array(
  1622. array('check', 'modlog_enabled', 'help' => 'modlog'),
  1623. array('check', 'adminlog_enabled', 'help' => 'adminlog'),
  1624. array('check', 'userlog_enabled', 'help' => 'userlog'),
  1625. // The error log is a wonderful thing.
  1626. array('title', 'errlog'),
  1627. array('desc', 'error_log_desc'),
  1628. array('check', 'enableErrorLogging'),
  1629. array('check', 'enableErrorQueryLogging'),
  1630. array('check', 'log_ban_hits'),
  1631. // Even do the pruning?
  1632. array('title', 'pruning_title'),
  1633. array('desc', 'pruning_desc'),
  1634. // The array indexes are there so we can remove/change them before saving.
  1635. 'pruningOptions' => array('check', 'pruningOptions'),
  1636. '',
  1637. // Various logs that could be pruned.
  1638. array('int', 'pruneErrorLog', 'postinput' => $txt['days_word'], 'subtext' => $txt['zero_to_disable']), // Error log.
  1639. array('int', 'pruneModLog', 'postinput' => $txt['days_word'], 'subtext' => $txt['zero_to_disable']), // Moderation log.
  1640. array('int', 'pruneBanLog', 'postinput' => $txt['days_word'], 'subtext' => $txt['zero_to_disable']), // Ban hit log.
  1641. array('int', 'pruneReportLog', 'postinput' => $txt['days_word'], 'subtext' => $txt['zero_to_disable']), // Report to moderator log.
  1642. array('int', 'pruneScheduledTaskLog', 'postinput' => $txt['days_word'], 'subtext' => $txt['zero_to_disable']), // Log of the scheduled tasks and how long they ran.
  1643. array('int', 'pruneSpiderHitLog', 'postinput' => $txt['days_word'], 'subtext' => $txt['zero_to_disable']), // Log of the scheduled tasks and how long they ran.
  1644. // If you add any additional logs make sure to add them after this point. Additionally, make sure you add them to the weekly scheduled task.
  1645. // Mod Developers: Do NOT use the pruningOptions master variable for this as SMF Core may overwrite your setting in the future!
  1646. );
  1647. // We want to be toggling some of these for a nice user experience. If you want to add yours to the list of those magically hidden when the 'pruning' option is off, add to this.
  1648. $prune_toggle = array('pruneErrorLog', 'pruneModLog', 'pruneBanLog', 'pruneReportLog', 'pruneScheduledTaskLog', 'pruneSpiderHitLog');
  1649. call_integration_hook('integrate_prune_settings', array(&$config_vars, &$prune_toggle, false));
  1650. $prune_toggle_dt = array();
  1651. foreach ($prune_toggle as $item)
  1652. $prune_toggle_dt[] = 'setting_' . $item;
  1653. if ($return_config)
  1654. return $config_vars;
  1655. addInlineJavascript('
  1656. function togglePruned()
  1657. {
  1658. var newval = $("#pruningOptions").prop("checked");
  1659. $("#' . implode(', #', $prune_toggle) . '").closest("dd").toggle(newval);
  1660. $("#' . implode(', #', $prune_toggle_dt) . '").closest("dt").toggle(newval);
  1661. };
  1662. togglePruned();
  1663. $("#pruningOptions").click(function() { togglePruned(); });', true);
  1664. // We'll need this in a bit.
  1665. require_once($sourcedir . '/ManageServer.php');
  1666. // Saving?
  1667. if (isset($_GET['save']))
  1668. {
  1669. checkSession();
  1670. // Because of the excitement attached to combining pruning log items, we need to duplicate everything here.
  1671. $savevar = array(
  1672. array('check', 'modlog_enabled'),
  1673. array('check', 'adminlog_enabled'),
  1674. array('check', 'userlog_enabled'),
  1675. array('check', 'enableErrorLogging'),
  1676. array('check', 'enableErrorQueryLogging'),
  1677. array('check', 'log_ban_hits'),
  1678. array('text', 'pruningOptions')
  1679. );
  1680. call_integration_hook('integrate_prune_settings', array(&$savevar, &$prune_toggle, true));
  1681. if (!empty($_POST['pruningOptions']))
  1682. {
  1683. $vals = array();
  1684. foreach ($config_vars as $index => $dummy)
  1685. {
  1686. if (!is_array($dummy) || $index == 'pruningOptions')
  1687. continue;
  1688. $vals[] = empty($_POST[$dummy[1]]) || $_POST[$dummy[1]] < 0 ? 0 : (int) $_POST[$dummy[1]];
  1689. }
  1690. $_POST['pruningOptions'] = implode(',', $vals);
  1691. }
  1692. else
  1693. $_POST['pruningOptions'] = '';
  1694. saveDBSettings($savevar);
  1695. $_SESSION['adm-save'] = true;
  1696. redirectexit('action=admin;area=logs;sa=settings');
  1697. }
  1698. $context['post_url'] = $scripturl . '?action=admin;area=logs;save;sa=settings';
  1699. $context['settings_title'] = $txt['log_settings'];
  1700. $context['sub_template'] = 'show_settings';
  1701. // Get the actual values
  1702. if (!empty($modSettings['pruningOptions']))
  1703. @list ($modSettings['pruneErrorLog'], $modSettings['pruneModLog'], $modSettings['pruneBanLog'], $modSettings['pruneReportLog'], $modSettings['pruneScheduledTaskLog'], $modSettings['pruneSpiderHitLog']) = explode(',', $modSettings['pruningOptions']);
  1704. else
  1705. $modSettings['pruneErrorLog'] = $modSettings['pruneModLog'] = $modSettings['pruneBanLog'] = $modSettings['pruneReportLog'] = $modSettings['pruneScheduledTaskLog'] = $modSettings['pruneSpiderHitLog'] = 0;
  1706. prepareDBSettingContext($config_vars);
  1707. }
  1708. /**
  1709. * If you have a general mod setting to add stick it here.
  1710. *
  1711. * @param $return_config
  1712. */
  1713. function ModifyGeneralModSettings($return_config = false)
  1714. {
  1715. global $txt, $scripturl, $context, $settings, $sc, $modSettings;
  1716. $config_vars = array(
  1717. // Mod authors, add any settings UNDER this line. Include a comma at the end of the line and don't remove this statement!!
  1718. );
  1719. // Make it even easier to add new settings.
  1720. call_integration_hook('integrate_general_mod_settings', array(&$config_vars));
  1721. if ($return_config)
  1722. return $config_vars;
  1723. $context['post_url'] = $scripturl . '?action=admin;area=modsettings;save;sa=general';
  1724. $context['settings_title'] = $txt['mods_cat_modifications_misc'];
  1725. // No removing this line you, dirty unwashed mod authors. :p
  1726. if (empty($config_vars))
  1727. {
  1728. $context['settings_save_dont_show'] = true;
  1729. $context['settings_message'] = '<div class="centertext">' . $txt['modification_no_misc_settings'] . '</div>';
  1730. return prepareDBSettingContext($config_vars);
  1731. }
  1732. // Saving?
  1733. if (isset($_GET['save']))
  1734. {
  1735. checkSession();
  1736. $save_vars = $config_vars;
  1737. call_integration_hook('integrate_save_general_mod_settings', array(&$save_vars));
  1738. // This line is to help mod authors do a search/add after if you want to add something here. Keyword: FOOT TAPPING SUCKS!
  1739. saveDBSettings($save_vars);
  1740. // This line is to remind mod authors that it's nice to let the users know when something has been saved.
  1741. $_SESSION['adm-save'] = true;
  1742. // This line is to help mod authors do a search/add after if you want to add something here. Keyword: I LOVE TEA!
  1743. redirectexit('action=admin;area=modsettings;sa=general');
  1744. }
  1745. // This line is to help mod authors do a search/add after if you want to add something here. Keyword: RED INK IS FOR TEACHERS AND THOSE WHO LIKE PAIN!
  1746. prepareDBSettingContext($config_vars);
  1747. }
  1748. ?>