ManageSettings.php 71 KB

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