2
0

ManageSmileys.php 59 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836
  1. <?php
  2. /**
  3. * This file takes care of all administration of smileys.
  4. *
  5. * Simple Machines Forum (SMF)
  6. *
  7. * @package SMF
  8. * @author Simple Machines http://www.simplemachines.org
  9. * @copyright 2011 Simple Machines
  10. * @license http://www.simplemachines.org/about/smf/license.php BSD
  11. *
  12. * @version 2.1 Alpha 1
  13. */
  14. if (!defined('SMF'))
  15. die('Hacking attempt...');
  16. /**
  17. * This is the dispatcher of smileys administration.
  18. */
  19. function ManageSmileys()
  20. {
  21. global $context, $txt, $scripturl, $modSettings;
  22. isAllowedTo('manage_smileys');
  23. loadLanguage('ManageSmileys');
  24. loadTemplate('ManageSmileys');
  25. $subActions = array(
  26. 'addsmiley' => 'AddSmiley',
  27. 'editicon' => 'EditMessageIcons',
  28. 'editicons' => 'EditMessageIcons',
  29. 'editsets' => 'EditSmileySets',
  30. 'editsmileys' => 'EditSmileys',
  31. 'import' => 'EditSmileySets',
  32. 'modifyset' => 'EditSmileySets',
  33. 'modifysmiley' => 'EditSmileys',
  34. 'setorder' => 'EditSmileyOrder',
  35. 'settings' => 'EditSmileySettings',
  36. 'install' => 'InstallSmileySet'
  37. );
  38. call_integration_hook('integrate_manage_smileys', array(&$subActions));
  39. // If customized smileys is disabled don't show the setting page
  40. if (empty($modSettings['smiley_enable']))
  41. {
  42. unset($subActions['addsmiley']);
  43. unset($subActions['editsmileys']);
  44. unset($subActions['setorder']);
  45. unset($subActions['modifysmiley']);
  46. }
  47. if (empty($modSettings['messageIcons_enable']))
  48. {
  49. unset($subActions['editicon']);
  50. unset($subActions['editicons']);
  51. }
  52. // Default the sub-action to 'edit smiley settings'.
  53. $_REQUEST['sa'] = isset($_REQUEST['sa']) && isset($subActions[$_REQUEST['sa']]) ? $_REQUEST['sa'] : 'editsets';
  54. $context['page_title'] = $txt['smileys_manage'];
  55. $context['sub_action'] = $_REQUEST['sa'];
  56. $context['sub_template'] = $context['sub_action'];
  57. // Load up all the tabs...
  58. $context[$context['admin_menu_name']]['tab_data'] = array(
  59. 'title' => $txt['smileys_manage'],
  60. 'help' => 'smileys',
  61. 'description' => $txt['smiley_settings_explain'],
  62. 'tabs' => array(
  63. 'editsets' => array(
  64. 'description' => $txt['smiley_editsets_explain'],
  65. ),
  66. 'addsmiley' => array(
  67. 'description' => $txt['smiley_addsmiley_explain'],
  68. ),
  69. 'editsmileys' => array(
  70. 'description' => $txt['smiley_editsmileys_explain'],
  71. ),
  72. 'setorder' => array(
  73. 'description' => $txt['smiley_setorder_explain'],
  74. ),
  75. 'editicons' => array(
  76. 'description' => $txt['icons_edit_icons_explain'],
  77. ),
  78. 'settings' => array(
  79. 'description' => $txt['smiley_settings_explain'],
  80. ),
  81. ),
  82. );
  83. // Some settings may not be enabled, disallow these from the tabs as appropriate.
  84. if (empty($modSettings['messageIcons_enable']))
  85. $context[$context['admin_menu_name']]['tab_data']['tabs']['editicons']['disabled'] = true;
  86. if (empty($modSettings['smiley_enable']))
  87. {
  88. $context[$context['admin_menu_name']]['tab_data']['tabs']['addsmiley']['disabled'] = true;
  89. $context[$context['admin_menu_name']]['tab_data']['tabs']['editsmileys']['disabled'] = true;
  90. $context[$context['admin_menu_name']]['tab_data']['tabs']['setorder']['disabled'] = true;
  91. }
  92. // Call the right function for this sub-acton.
  93. $subActions[$_REQUEST['sa']]();
  94. }
  95. /**
  96. * Allows to modify smileys settings.
  97. *
  98. * @param bool $return_config = false
  99. */
  100. function EditSmileySettings($return_config = false)
  101. {
  102. global $modSettings, $context, $settings, $txt, $boarddir, $sourcedir, $scripturl;
  103. // The directories...
  104. $context['smileys_dir'] = empty($modSettings['smileys_dir']) ? $boarddir . '/Smileys' : $modSettings['smileys_dir'];
  105. $context['smileys_dir_found'] = is_dir($context['smileys_dir']);
  106. // Get the names of the smiley sets.
  107. $smiley_sets = explode(',', $modSettings['smiley_sets_known']);
  108. $set_names = explode("\n", $modSettings['smiley_sets_names']);
  109. $smiley_context = array();
  110. foreach ($smiley_sets as $i => $set)
  111. $smiley_context[$set] = $set_names[$i];
  112. // All the settings for the page...
  113. $config_vars = array(
  114. array('title', 'settings'),
  115. // Inline permissions.
  116. array('permissions', 'manage_smileys'),
  117. '',
  118. array('select', 'smiley_sets_default', $smiley_context),
  119. array('check', 'smiley_sets_enable'),
  120. array('check', 'smiley_enable', 'subtext' => $txt['smileys_enable_note']),
  121. array('text', 'smileys_url'),
  122. array('text', 'smileys_dir', 'invalid' => !$context['smileys_dir_found']),
  123. '',
  124. // Message icons.
  125. array('check', 'messageIcons_enable', 'subtext' => $txt['setting_messageIcons_enable_note']),
  126. );
  127. call_integration_hook('integrate_modify_smiley_settings', array(&$config_vars));
  128. if ($return_config)
  129. return $config_vars;
  130. // Setup the basics of the settings template.
  131. require_once($sourcedir . '/ManageServer.php');
  132. $context['sub_template'] = 'show_settings';
  133. // Finish up the form...
  134. $context['post_url'] = $scripturl . '?action=admin;area=smileys;save;sa=settings';
  135. $context['permissions_excluded'] = array(-1);
  136. // Saving the settings?
  137. if (isset($_GET['save']))
  138. {
  139. checkSession();
  140. // Validate the smiley set name.
  141. $_POST['smiley_sets_default'] = empty($smiley_context[$_POST['smiley_sets_default']]) ? 'default' : $_POST['smiley_sets_default'];
  142. // Make sure that the smileys are in the right order after enabling them.
  143. if (isset($_POST['smiley_enable']))
  144. sortSmileyTable();
  145. call_integration_hook('integrate_save_smiley_settings');
  146. saveDBSettings($config_vars);
  147. cache_put_data('parsing_smileys', null, 480);
  148. cache_put_data('posting_smileys', null, 480);
  149. redirectexit('action=admin;area=smileys;sa=settings');
  150. }
  151. // We need this for the in-line permissions
  152. createToken('admin-mp');
  153. prepareDBSettingContext($config_vars);
  154. }
  155. /**
  156. * List, add, remove, modify smileys sets.
  157. */
  158. function EditSmileySets()
  159. {
  160. global $modSettings, $context, $settings, $txt, $boarddir;
  161. global $smcFunc, $scripturl, $sourcedir;
  162. // Set the right tab to be selected.
  163. $context[$context['admin_menu_name']]['current_subsection'] = 'editsets';
  164. // They must've been submitted a form.
  165. if (isset($_POST[$context['session_var']]))
  166. {
  167. checkSession();
  168. validateToken('admin-mss', 'request');
  169. // Delete selected smiley sets.
  170. if (!empty($_POST['delete']) && !empty($_POST['smiley_set']))
  171. {
  172. $set_paths = explode(',', $modSettings['smiley_sets_known']);
  173. $set_names = explode("\n", $modSettings['smiley_sets_names']);
  174. foreach ($_POST['smiley_set'] as $id => $val)
  175. if (isset($set_paths[$id], $set_names[$id]) && !empty($id))
  176. unset($set_paths[$id], $set_names[$id]);
  177. updateSettings(array(
  178. 'smiley_sets_known' => implode(',', $set_paths),
  179. 'smiley_sets_names' => implode("\n", $set_names),
  180. 'smiley_sets_default' => in_array($modSettings['smiley_sets_default'], $set_paths) ? $modSettings['smiley_sets_default'] : $set_paths[0],
  181. ));
  182. }
  183. // Add a new smiley set.
  184. elseif (!empty($_POST['add']))
  185. $context['sub_action'] = 'modifyset';
  186. // Create or modify a smiley set.
  187. elseif (isset($_POST['set']))
  188. {
  189. $set_paths = explode(',', $modSettings['smiley_sets_known']);
  190. $set_names = explode("\n", $modSettings['smiley_sets_names']);
  191. // Create a new smiley set.
  192. if ($_POST['set'] == -1 && isset($_POST['smiley_sets_path']))
  193. {
  194. if (in_array($_POST['smiley_sets_path'], $set_paths))
  195. fatal_lang_error('smiley_set_already_exists');
  196. updateSettings(array(
  197. 'smiley_sets_known' => $modSettings['smiley_sets_known'] . ',' . $_POST['smiley_sets_path'],
  198. 'smiley_sets_names' => $modSettings['smiley_sets_names'] . "\n" . $_POST['smiley_sets_name'],
  199. 'smiley_sets_default' => empty($_POST['smiley_sets_default']) ? $modSettings['smiley_sets_default'] : $_POST['smiley_sets_path'],
  200. ));
  201. }
  202. // Modify an existing smiley set.
  203. else
  204. {
  205. // Make sure the smiley set exists.
  206. if (!isset($set_paths[$_POST['set']]) || !isset($set_names[$_POST['set']]))
  207. fatal_lang_error('smiley_set_not_found');
  208. // Make sure the path is not yet used by another smileyset.
  209. if (in_array($_POST['smiley_sets_path'], $set_paths) && $_POST['smiley_sets_path'] != $set_paths[$_POST['set']])
  210. fatal_lang_error('smiley_set_path_already_used');
  211. $set_paths[$_POST['set']] = $_POST['smiley_sets_path'];
  212. $set_names[$_POST['set']] = $_POST['smiley_sets_name'];
  213. updateSettings(array(
  214. 'smiley_sets_known' => implode(',', $set_paths),
  215. 'smiley_sets_names' => implode("\n", $set_names),
  216. 'smiley_sets_default' => empty($_POST['smiley_sets_default']) ? $modSettings['smiley_sets_default'] : $_POST['smiley_sets_path']
  217. ));
  218. }
  219. // The user might have checked to also import smileys.
  220. if (!empty($_POST['smiley_sets_import']))
  221. ImportSmileys($_POST['smiley_sets_path']);
  222. }
  223. cache_put_data('parsing_smileys', null, 480);
  224. cache_put_data('posting_smileys', null, 480);
  225. }
  226. // Load all available smileysets...
  227. $context['smiley_sets'] = explode(',', $modSettings['smiley_sets_known']);
  228. $set_names = explode("\n", $modSettings['smiley_sets_names']);
  229. foreach ($context['smiley_sets'] as $i => $set)
  230. $context['smiley_sets'][$i] = array(
  231. 'id' => $i,
  232. 'path' => htmlspecialchars($set),
  233. 'name' => htmlspecialchars($set_names[$i]),
  234. 'selected' => $set == $modSettings['smiley_sets_default']
  235. );
  236. // Importing any smileys from an existing set?
  237. if ($context['sub_action'] == 'import')
  238. {
  239. checkSession('get');
  240. validateToken('admin-mss', 'request');
  241. $_GET['set'] = (int) $_GET['set'];
  242. // Sanity check - then import.
  243. if (isset($context['smiley_sets'][$_GET['set']]))
  244. ImportSmileys(un_htmlspecialchars($context['smiley_sets'][$_GET['set']]['path']));
  245. // Force the process to continue.
  246. $context['sub_action'] = 'modifyset';
  247. $context['sub_template'] = 'modifyset';
  248. }
  249. // If we're modifying or adding a smileyset, some context info needs to be set.
  250. if ($context['sub_action'] == 'modifyset')
  251. {
  252. $_GET['set'] = !isset($_GET['set']) ? -1 : (int) $_GET['set'];
  253. if ($_GET['set'] == -1 || !isset($context['smiley_sets'][$_GET['set']]))
  254. $context['current_set'] = array(
  255. 'id' => '-1',
  256. 'path' => '',
  257. 'name' => '',
  258. 'selected' => false,
  259. 'is_new' => true,
  260. );
  261. else
  262. {
  263. $context['current_set'] = &$context['smiley_sets'][$_GET['set']];
  264. $context['current_set']['is_new'] = false;
  265. // Calculate whether there are any smileys in the directory that can be imported.
  266. if (!empty($modSettings['smiley_enable']) && !empty($modSettings['smileys_dir']) && is_dir($modSettings['smileys_dir'] . '/' . $context['current_set']['path']))
  267. {
  268. $smileys = array();
  269. $dir = dir($modSettings['smileys_dir'] . '/' . $context['current_set']['path']);
  270. while ($entry = $dir->read())
  271. {
  272. if (in_array(strrchr($entry, '.'), array('.jpg', '.gif', '.jpeg', '.png')))
  273. $smileys[strtolower($entry)] = $entry;
  274. }
  275. $dir->close();
  276. // Exclude the smileys that are already in the database.
  277. $request = $smcFunc['db_query']('', '
  278. SELECT filename
  279. FROM {db_prefix}smileys
  280. WHERE filename IN ({array_string:smiley_list})',
  281. array(
  282. 'smiley_list' => $smileys,
  283. )
  284. );
  285. while ($row = $smcFunc['db_fetch_assoc']($request))
  286. if (isset($smileys[strtolower($row['filename'])]))
  287. unset($smileys[strtolower($row['filename'])]);
  288. $smcFunc['db_free_result']($request);
  289. $context['current_set']['can_import'] = count($smileys);
  290. // Setup this string to look nice.
  291. $txt['smiley_set_import_multiple'] = sprintf($txt['smiley_set_import_multiple'], $context['current_set']['can_import']);
  292. }
  293. }
  294. // Retrieve all potential smiley set directories.
  295. $context['smiley_set_dirs'] = array();
  296. if (!empty($modSettings['smileys_dir']) && is_dir($modSettings['smileys_dir']))
  297. {
  298. $dir = dir($modSettings['smileys_dir']);
  299. while ($entry = $dir->read())
  300. {
  301. if (!in_array($entry, array('.', '..')) && is_dir($modSettings['smileys_dir'] . '/' . $entry))
  302. $context['smiley_set_dirs'][] = array(
  303. 'id' => $entry,
  304. 'path' => $modSettings['smileys_dir'] . '/' . $entry,
  305. 'selectable' => $entry == $context['current_set']['path'] || !in_array($entry, explode(',', $modSettings['smiley_sets_known'])),
  306. 'current' => $entry == $context['current_set']['path'],
  307. );
  308. }
  309. $dir->close();
  310. }
  311. }
  312. // This is our save haven.
  313. createToken('admin-mss', 'request');
  314. $listOptions = array(
  315. 'id' => 'smiley_set_list',
  316. 'base_href' => $scripturl . '?action=admin;area=smileys;sa=editsets',
  317. 'default_sort_col' => 'default',
  318. 'get_items' => array(
  319. 'function' => 'list_getSmileySets',
  320. ),
  321. 'get_count' => array(
  322. 'function' => 'list_getNumSmileySets',
  323. ),
  324. 'columns' => array(
  325. 'default' => array(
  326. 'header' => array(
  327. 'value' => $txt['smiley_sets_default'],
  328. ),
  329. 'data' => array(
  330. 'function' => create_function('$rowData', '
  331. return $rowData[\'selected\'] ? \'<strong>*</strong>\' : \'\';
  332. '),
  333. 'style' => 'text-align: center;',
  334. ),
  335. 'sort' => array(
  336. 'default' => 'selected DESC',
  337. ),
  338. ),
  339. 'name' => array(
  340. 'header' => array(
  341. 'value' => $txt['smiley_sets_name'],
  342. ),
  343. 'data' => array(
  344. 'db_htmlsafe' => 'name',
  345. 'class' => 'windowbg',
  346. ),
  347. 'sort' => array(
  348. 'default' => 'name',
  349. 'reverse' => 'name DESC',
  350. ),
  351. ),
  352. 'url' => array(
  353. 'header' => array(
  354. 'value' => $txt['smiley_sets_url'],
  355. ),
  356. 'data' => array(
  357. 'sprintf' => array(
  358. 'format' => $modSettings['smileys_url'] . '/<strong>%1$s</strong>/...',
  359. 'params' => array(
  360. 'path' => true,
  361. ),
  362. ),
  363. 'class' => 'windowbg',
  364. ),
  365. 'sort' => array(
  366. 'default' => 'path',
  367. 'reverse' => 'path DESC',
  368. ),
  369. ),
  370. 'modify' => array(
  371. 'header' => array(
  372. 'value' => $txt['smiley_set_modify'],
  373. ),
  374. 'data' => array(
  375. 'sprintf' => array(
  376. 'format' => '<a href="' . $scripturl . '?action=admin;area=smileys;sa=modifyset;set=%1$d">' . $txt['smiley_set_modify'] . '</a>',
  377. 'params' => array(
  378. 'id' => true,
  379. ),
  380. ),
  381. 'style' => 'text-align: center;',
  382. ),
  383. ),
  384. 'check' => array(
  385. 'header' => array(
  386. 'value' => '<input type="checkbox" onclick="invertAll(this, this.form);" class="input_check" />',
  387. ),
  388. 'data' => array(
  389. 'function' => create_function('$rowData', '
  390. return $rowData[\'id\'] == 0 ? \'\' : sprintf(\'<input type="checkbox" name="smiley_set[%1$d]" class="input_check" />\', $rowData[\'id\']);
  391. '),
  392. 'style' => 'text-align: center',
  393. ),
  394. ),
  395. ),
  396. 'form' => array(
  397. 'href' => $scripturl . '?action=admin;area=smileys;sa=editsets',
  398. 'token' => 'admin-mss',
  399. ),
  400. 'additional_rows' => array(
  401. array(
  402. 'position' => 'below_table_data',
  403. 'value' => '[<a href="' . $scripturl . '?action=admin;area=smileys;sa=modifyset' . '">' . $txt['smiley_sets_add'] . '</a>] <input type="submit" name="delete" value="' . $txt['smiley_sets_delete'] . '" onclick="return confirm(\'' . $txt['smiley_sets_confirm'] . '\');" class="button_submit" />',
  404. ),
  405. ),
  406. );
  407. require_once($sourcedir . '/Subs-List.php');
  408. createList($listOptions);
  409. }
  410. /**
  411. * Callback function for createList().
  412. * @todo to be moved to Subs-Smileys?
  413. *
  414. * @param $start
  415. * @param $items_per_page
  416. * @param $sort
  417. */
  418. function list_getSmileySets($start, $items_per_page, $sort)
  419. {
  420. global $modSettings;
  421. $known_sets = explode(',', $modSettings['smiley_sets_known']);
  422. $set_names = explode("\n", $modSettings['smiley_sets_names']);
  423. $cols = array(
  424. 'id' => array(),
  425. 'selected' => array(),
  426. 'path' => array(),
  427. 'name' => array(),
  428. );
  429. foreach ($known_sets as $i => $set)
  430. {
  431. $cols['id'][] = $i;
  432. $cols['selected'][] = $i;
  433. $cols['path'][] = $set;
  434. $cols['name'][] = $set_names[$i];
  435. }
  436. $sort_flag = strpos($sort, 'DESC') === false ? SORT_ASC : SORT_DESC;
  437. if (substr($sort, 0, 4) === 'name')
  438. array_multisort($cols['name'], $sort_flag, SORT_REGULAR, $cols['path'], $cols['selected'], $cols['id']);
  439. elseif (substr($sort, 0, 4) === 'path')
  440. array_multisort($cols['path'], $sort_flag, SORT_REGULAR, $cols['name'], $cols['selected'], $cols['id']);
  441. else
  442. array_multisort($cols['selected'], $sort_flag, SORT_REGULAR, $cols['path'], $cols['name'], $cols['id']);
  443. $smiley_sets = array();
  444. foreach ($cols['id'] as $i => $id)
  445. $smiley_sets[] = array(
  446. 'id' => $id,
  447. 'path' => $cols['path'][$i],
  448. 'name' => $cols['name'][$i],
  449. 'selected' => $cols['path'][$i] == $modSettings['smiley_sets_default']
  450. );
  451. return $smiley_sets;
  452. }
  453. /**
  454. * Callback function for createList().
  455. * @todo to be moved to Subs-Smileys?
  456. */
  457. function list_getNumSmileySets()
  458. {
  459. global $modSettings;
  460. return count(explode(',', $modSettings['smiley_sets_known']));
  461. }
  462. /**
  463. * Add a smiley, that's right.
  464. */
  465. function AddSmiley()
  466. {
  467. global $modSettings, $context, $settings, $txt, $boarddir, $smcFunc;
  468. // Get a list of all known smiley sets.
  469. $context['smileys_dir'] = empty($modSettings['smileys_dir']) ? $boarddir . '/Smileys' : $modSettings['smileys_dir'];
  470. $context['smileys_dir_found'] = is_dir($context['smileys_dir']);
  471. $context['smiley_sets'] = explode(',', $modSettings['smiley_sets_known']);
  472. $set_names = explode("\n", $modSettings['smiley_sets_names']);
  473. foreach ($context['smiley_sets'] as $i => $set)
  474. $context['smiley_sets'][$i] = array(
  475. 'id' => $i,
  476. 'path' => htmlspecialchars($set),
  477. 'name' => htmlspecialchars($set_names[$i]),
  478. 'selected' => $set == $modSettings['smiley_sets_default']
  479. );
  480. // Submitting a form?
  481. if (isset($_POST[$context['session_var']], $_POST['smiley_code']))
  482. {
  483. checkSession();
  484. // Some useful arrays... types we allow - and ports we don't!
  485. $allowedTypes = array('jpeg', 'jpg', 'gif', 'png', 'bmp');
  486. $disabledFiles = array('con', 'com1', 'com2', 'com3', 'com4', 'prn', 'aux', 'lpt1', '.htaccess', 'index.php');
  487. $_POST['smiley_code'] = htmltrim__recursive($_POST['smiley_code']);
  488. $_POST['smiley_location'] = empty($_POST['smiley_location']) || $_POST['smiley_location'] > 2 || $_POST['smiley_location'] < 0 ? 0 : (int) $_POST['smiley_location'];
  489. $_POST['smiley_filename'] = htmltrim__recursive($_POST['smiley_filename']);
  490. // Make sure some code was entered.
  491. if (empty($_POST['smiley_code']))
  492. fatal_lang_error('smiley_has_no_code');
  493. // Check whether the new code has duplicates. It should be unique.
  494. $request = $smcFunc['db_query']('', '
  495. SELECT id_smiley
  496. FROM {db_prefix}smileys
  497. WHERE code = {raw:mysql_binary_statement} {string:smiley_code}',
  498. array(
  499. 'mysql_binary_statement' => $smcFunc['db_title'] == 'MySQL' ? 'BINARY' : '',
  500. 'smiley_code' => $_POST['smiley_code'],
  501. )
  502. );
  503. if ($smcFunc['db_num_rows']($request) > 0)
  504. fatal_lang_error('smiley_not_unique');
  505. $smcFunc['db_free_result']($request);
  506. // If we are uploading - check all the smiley sets are writable!
  507. if ($_POST['method'] != 'existing')
  508. {
  509. $writeErrors = array();
  510. foreach ($context['smiley_sets'] as $set)
  511. {
  512. if (!is_writable($context['smileys_dir'] . '/' . un_htmlspecialchars($set['path'])))
  513. $writeErrors[] = $set['path'];
  514. }
  515. if (!empty($writeErrors))
  516. fatal_lang_error('smileys_upload_error_notwritable', true, array(implode(', ', $writeErrors)));
  517. }
  518. // Uploading just one smiley for all of them?
  519. if (isset($_POST['sameall']) && isset($_FILES['uploadSmiley']['name']) && $_FILES['uploadSmiley']['name'] != '')
  520. {
  521. if (!is_uploaded_file($_FILES['uploadSmiley']['tmp_name']) || (ini_get('open_basedir') == '' && !file_exists($_FILES['uploadSmiley']['tmp_name'])))
  522. fatal_lang_error('smileys_upload_error');
  523. // Sorry, no spaces, dots, or anything else but letters allowed.
  524. $_FILES['uploadSmiley']['name'] = preg_replace(array('/\s/', '/\.[\.]+/', '/[^\w_\.\-]/'), array('_', '.', ''), $_FILES['uploadSmiley']['name']);
  525. // We only allow image files - it's THAT simple - no messing around here...
  526. if (!in_array(strtolower(substr(strrchr($_FILES['uploadSmiley']['name'], '.'), 1)), $allowedTypes))
  527. fatal_lang_error('smileys_upload_error_types', false, array(implode(', ', $allowedTypes)));
  528. // We only need the filename...
  529. $destName = basename($_FILES['uploadSmiley']['name']);
  530. // Make sure they aren't trying to upload a nasty file - for their own good here!
  531. if (in_array(strtolower($destName), $disabledFiles))
  532. fatal_lang_error('smileys_upload_error_illegal');
  533. // Check if the file already exists... and if not move it to EVERY smiley set directory.
  534. $i = 0;
  535. // Keep going until we find a set the file doesn't exist in. (or maybe it exists in all of them?)
  536. while (isset($context['smiley_sets'][$i]) && file_exists($context['smileys_dir'] . '/' . un_htmlspecialchars($context['smiley_sets'][$i]['path']) . '/' . $destName))
  537. $i++;
  538. // Okay, we're going to put the smiley right here, since it's not there yet!
  539. if (isset($context['smiley_sets'][$i]['path']))
  540. {
  541. $smileyLocation = $context['smileys_dir'] . '/' . un_htmlspecialchars($context['smiley_sets'][$i]['path']) . '/' . $destName;
  542. move_uploaded_file($_FILES['uploadSmiley']['tmp_name'], $smileyLocation);
  543. @chmod($smileyLocation, 0644);
  544. // Now, we want to move it from there to all the other sets.
  545. for ($n = count($context['smiley_sets']); $i < $n; $i++)
  546. {
  547. $currentPath = $context['smileys_dir'] . '/' . un_htmlspecialchars($context['smiley_sets'][$i]['path']) . '/' . $destName;
  548. // The file is already there! Don't overwrite it!
  549. if (file_exists($currentPath))
  550. continue;
  551. // Okay, so copy the first one we made to here.
  552. copy($smileyLocation, $currentPath);
  553. @chmod($currentPath, 0644);
  554. }
  555. }
  556. // Finally make sure it's saved correctly!
  557. $_POST['smiley_filename'] = $destName;
  558. }
  559. // What about uploading several files?
  560. elseif ($_POST['method'] != 'existing')
  561. {
  562. $newName = '';
  563. foreach ($_FILES as $name => $data)
  564. {
  565. if ($_FILES[$name]['name'] == '')
  566. fatal_lang_error('smileys_upload_error_blank');
  567. if (empty($newName))
  568. $newName = basename($_FILES[$name]['name']);
  569. elseif (basename($_FILES[$name]['name']) != $newName)
  570. fatal_lang_error('smileys_upload_error_name');
  571. }
  572. foreach ($context['smiley_sets'] as $i => $set)
  573. {
  574. $set['name'] = un_htmlspecialchars($set['name']);
  575. $set['path'] = un_htmlspecialchars($set['path']);
  576. if (!isset($_FILES['individual_' . $set['name']]['name']) || $_FILES['individual_' . $set['name']]['name'] == '')
  577. continue;
  578. // Got one...
  579. if (!is_uploaded_file($_FILES['individual_' . $set['name']]['tmp_name']) || (ini_get('open_basedir') == '' && !file_exists($_FILES['individual_' . $set['name']]['tmp_name'])))
  580. fatal_lang_error('smileys_upload_error');
  581. // Sorry, no spaces, dots, or anything else but letters allowed.
  582. $_FILES['individual_' . $set['name']]['name'] = preg_replace(array('/\s/', '/\.[\.]+/', '/[^\w_\.\-]/'), array('_', '.', ''), $_FILES['individual_' . $set['name']]['name']);
  583. // We only allow image files - it's THAT simple - no messing around here...
  584. if (!in_array(strtolower(substr(strrchr($_FILES['individual_' . $set['name']]['name'], '.'), 1)), $allowedTypes))
  585. fatal_lang_error('smileys_upload_error_types', false, array(implode(', ', $allowedTypes)));
  586. // We only need the filename...
  587. $destName = basename($_FILES['individual_' . $set['name']]['name']);
  588. // Make sure they aren't trying to upload a nasty file - for their own good here!
  589. if (in_array(strtolower($destName), $disabledFiles))
  590. fatal_lang_error('smileys_upload_error_illegal');
  591. // If the file exists - ignore it.
  592. $smileyLocation = $context['smileys_dir'] . '/' . $set['path'] . '/' . $destName;
  593. if (file_exists($smileyLocation))
  594. continue;
  595. // Finally - move the image!
  596. move_uploaded_file($_FILES['individual_' . $set['name']]['tmp_name'], $smileyLocation);
  597. @chmod($smileyLocation, 0644);
  598. // Should always be saved correctly!
  599. $_POST['smiley_filename'] = $destName;
  600. }
  601. }
  602. // Also make sure a filename was given.
  603. if (empty($_POST['smiley_filename']))
  604. fatal_lang_error('smiley_has_no_filename');
  605. // Find the position on the right.
  606. $smiley_order = '0';
  607. if ($_POST['smiley_location'] != 1)
  608. {
  609. $request = $smcFunc['db_query']('', '
  610. SELECT MAX(smiley_order) + 1
  611. FROM {db_prefix}smileys
  612. WHERE hidden = {int:smiley_location}
  613. AND smiley_row = {int:first_row}',
  614. array(
  615. 'smiley_location' => $_POST['smiley_location'],
  616. 'first_row' => 0,
  617. )
  618. );
  619. list ($smiley_order) = $smcFunc['db_fetch_row']($request);
  620. $smcFunc['db_free_result']($request);
  621. if (empty($smiley_order))
  622. $smiley_order = '0';
  623. }
  624. $smcFunc['db_insert']('',
  625. '{db_prefix}smileys',
  626. array(
  627. 'code' => 'string-30', 'filename' => 'string-48', 'description' => 'string-80', 'hidden' => 'int', 'smiley_order' => 'int',
  628. ),
  629. array(
  630. $_POST['smiley_code'], $_POST['smiley_filename'], $_POST['smiley_description'], $_POST['smiley_location'], $smiley_order,
  631. ),
  632. array('id_smiley')
  633. );
  634. cache_put_data('parsing_smileys', null, 480);
  635. cache_put_data('posting_smileys', null, 480);
  636. // No errors? Out of here!
  637. redirectexit('action=admin;area=smileys;sa=editsmileys');
  638. }
  639. $context['selected_set'] = $modSettings['smiley_sets_default'];
  640. // Get all possible filenames for the smileys.
  641. $context['filenames'] = array();
  642. if ($context['smileys_dir_found'])
  643. {
  644. foreach ($context['smiley_sets'] as $smiley_set)
  645. {
  646. if (!file_exists($context['smileys_dir'] . '/' . un_htmlspecialchars($smiley_set['path'])))
  647. continue;
  648. $dir = dir($context['smileys_dir'] . '/' . un_htmlspecialchars($smiley_set['path']));
  649. while ($entry = $dir->read())
  650. {
  651. if (!in_array($entry, $context['filenames']) && in_array(strrchr($entry, '.'), array('.jpg', '.gif', '.jpeg', '.png')))
  652. $context['filenames'][strtolower($entry)] = array(
  653. 'id' => htmlspecialchars($entry),
  654. 'selected' => false,
  655. );
  656. }
  657. $dir->close();
  658. }
  659. ksort($context['filenames']);
  660. }
  661. // Create a new smiley from scratch.
  662. $context['filenames'] = array_values($context['filenames']);
  663. $context['current_smiley'] = array(
  664. 'id' => 0,
  665. 'code' => '',
  666. 'filename' => $context['filenames'][0]['id'],
  667. 'description' => $txt['smileys_default_description'],
  668. 'location' => 0,
  669. 'is_new' => true,
  670. );
  671. }
  672. /**
  673. * Add, remove, edit smileys.
  674. */
  675. function EditSmileys()
  676. {
  677. global $modSettings, $context, $settings, $txt, $boarddir;
  678. global $smcFunc, $scripturl, $sourcedir;
  679. // Force the correct tab to be displayed.
  680. $context[$context['admin_menu_name']]['current_subsection'] = 'editsmileys';
  681. // Submitting a form?
  682. if (isset($_POST[$context['session_var']]))
  683. {
  684. checkSession();
  685. // Changing the selected smileys?
  686. if (isset($_POST['smiley_action']) && !empty($_POST['checked_smileys']))
  687. {
  688. foreach ($_POST['checked_smileys'] as $id => $smiley_id)
  689. $_POST['checked_smileys'][$id] = (int) $smiley_id;
  690. if ($_POST['smiley_action'] == 'delete')
  691. $smcFunc['db_query']('', '
  692. DELETE FROM {db_prefix}smileys
  693. WHERE id_smiley IN ({array_int:checked_smileys})',
  694. array(
  695. 'checked_smileys' => $_POST['checked_smileys'],
  696. )
  697. );
  698. // Changing the status of the smiley?
  699. else
  700. {
  701. // Check it's a valid type.
  702. $displayTypes = array(
  703. 'post' => 0,
  704. 'hidden' => 1,
  705. 'popup' => 2
  706. );
  707. if (isset($displayTypes[$_POST['smiley_action']]))
  708. $smcFunc['db_query']('', '
  709. UPDATE {db_prefix}smileys
  710. SET hidden = {int:display_type}
  711. WHERE id_smiley IN ({array_int:checked_smileys})',
  712. array(
  713. 'checked_smileys' => $_POST['checked_smileys'],
  714. 'display_type' => $displayTypes[$_POST['smiley_action']],
  715. )
  716. );
  717. }
  718. }
  719. // Create/modify a smiley.
  720. elseif (isset($_POST['smiley']))
  721. {
  722. // Is it a delete?
  723. if (!empty($_POST['deletesmiley']))
  724. {
  725. $smcFunc['db_query']('', '
  726. DELETE FROM {db_prefix}smileys
  727. WHERE id_smiley = {int:current_smiley}',
  728. array(
  729. 'current_smiley' => $_POST['smiley'],
  730. )
  731. );
  732. }
  733. // Otherwise an edit.
  734. else
  735. {
  736. $_POST['smiley'] = (int) $_POST['smiley'];
  737. $_POST['smiley_code'] = htmltrim__recursive($_POST['smiley_code']);
  738. $_POST['smiley_filename'] = htmltrim__recursive($_POST['smiley_filename']);
  739. $_POST['smiley_location'] = empty($_POST['smiley_location']) || $_POST['smiley_location'] > 2 || $_POST['smiley_location'] < 0 ? 0 : (int) $_POST['smiley_location'];
  740. // Make sure some code was entered.
  741. if (empty($_POST['smiley_code']))
  742. fatal_lang_error('smiley_has_no_code');
  743. // Also make sure a filename was given.
  744. if (empty($_POST['smiley_filename']))
  745. fatal_lang_error('smiley_has_no_filename');
  746. // Check whether the new code has duplicates. It should be unique.
  747. $request = $smcFunc['db_query']('', '
  748. SELECT id_smiley
  749. FROM {db_prefix}smileys
  750. WHERE code = {raw:mysql_binary_type} {string:smiley_code}' . (empty($_POST['smiley']) ? '' : '
  751. AND id_smiley != {int:current_smiley}'),
  752. array(
  753. 'current_smiley' => $_POST['smiley'],
  754. 'mysql_binary_type' => $smcFunc['db_title'] == 'MySQL' ? 'BINARY' : '',
  755. 'smiley_code' => $_POST['smiley_code'],
  756. )
  757. );
  758. if ($smcFunc['db_num_rows']($request) > 0)
  759. fatal_lang_error('smiley_not_unique');
  760. $smcFunc['db_free_result']($request);
  761. $smcFunc['db_query']('', '
  762. UPDATE {db_prefix}smileys
  763. SET
  764. code = {string:smiley_code},
  765. filename = {string:smiley_filename},
  766. description = {string:smiley_description},
  767. hidden = {int:smiley_location}
  768. WHERE id_smiley = {int:current_smiley}',
  769. array(
  770. 'smiley_location' => $_POST['smiley_location'],
  771. 'current_smiley' => $_POST['smiley'],
  772. 'smiley_code' => $_POST['smiley_code'],
  773. 'smiley_filename' => $_POST['smiley_filename'],
  774. 'smiley_description' => $_POST['smiley_description'],
  775. )
  776. );
  777. }
  778. // Sort all smiley codes for more accurate parsing (longest code first).
  779. sortSmileyTable();
  780. }
  781. cache_put_data('parsing_smileys', null, 480);
  782. cache_put_data('posting_smileys', null, 480);
  783. }
  784. // Load all known smiley sets.
  785. $context['smiley_sets'] = explode(',', $modSettings['smiley_sets_known']);
  786. $set_names = explode("\n", $modSettings['smiley_sets_names']);
  787. foreach ($context['smiley_sets'] as $i => $set)
  788. $context['smiley_sets'][$i] = array(
  789. 'id' => $i,
  790. 'path' => htmlspecialchars($set),
  791. 'name' => htmlspecialchars($set_names[$i]),
  792. 'selected' => $set == $modSettings['smiley_sets_default']
  793. );
  794. // Prepare overview of all (custom) smileys.
  795. if ($context['sub_action'] == 'editsmileys')
  796. {
  797. // Determine the language specific sort order of smiley locations.
  798. $smiley_locations = array(
  799. $txt['smileys_location_form'],
  800. $txt['smileys_location_hidden'],
  801. $txt['smileys_location_popup'],
  802. );
  803. asort($smiley_locations);
  804. // Create a list of options for selecting smiley sets.
  805. $smileyset_option_list = '
  806. <select name="set" onchange="changeSet(this.options[this.selectedIndex].value);">';
  807. foreach ($context['smiley_sets'] as $smiley_set)
  808. $smileyset_option_list .= '
  809. <option value="' . $smiley_set['path'] . '"' . ($modSettings['smiley_sets_default'] == $smiley_set['path'] ? ' selected="selected"' : '') . '>' . $smiley_set['name'] . '</option>';
  810. $smileyset_option_list .= '
  811. </select>';
  812. $listOptions = array(
  813. 'id' => 'smiley_list',
  814. 'items_per_page' => 40,
  815. 'base_href' => $scripturl . '?action=admin;area=smileys;sa=editsmileys',
  816. 'default_sort_col' => 'filename',
  817. 'get_items' => array(
  818. 'function' => 'list_getSmileys',
  819. ),
  820. 'get_count' => array(
  821. 'function' => 'list_getNumSmileys',
  822. ),
  823. 'no_items_label' => $txt['smileys_no_entries'],
  824. 'columns' => array(
  825. 'picture' => array(
  826. 'data' => array(
  827. 'sprintf' => array(
  828. 'format' => '<a href="' . $scripturl . '?action=admin;area=smileys;sa=modifysmiley;smiley=%1$d"><img src="' . $modSettings['smileys_url'] . '/' . $modSettings['smiley_sets_default'] . '/%2$s" alt="%3$s" style="padding: 2px;" id="smiley%1$d" /><input type="hidden" name="smileys[%1$d][filename]" value="%2$s" /></a>',
  829. 'params' => array(
  830. 'id_smiley' => false,
  831. 'filename' => true,
  832. 'description' => true,
  833. ),
  834. ),
  835. 'style' => 'text-align: center;',
  836. ),
  837. ),
  838. 'code' => array(
  839. 'header' => array(
  840. 'value' => $txt['smileys_code'],
  841. ),
  842. 'data' => array(
  843. 'db_htmlsafe' => 'code',
  844. ),
  845. 'sort' => array(
  846. 'default' => 'code',
  847. 'reverse' => 'code DESC',
  848. ),
  849. ),
  850. 'filename' => array(
  851. 'header' => array(
  852. 'value' => $txt['smileys_filename'],
  853. ),
  854. 'data' => array(
  855. 'db_htmlsafe' => 'filename',
  856. 'class' => 'windowbg',
  857. ),
  858. 'sort' => array(
  859. 'default' => 'filename',
  860. 'reverse' => 'filename DESC',
  861. ),
  862. ),
  863. 'location' => array(
  864. 'header' => array(
  865. 'value' => $txt['smileys_location'],
  866. ),
  867. 'data' => array(
  868. 'function' => create_function('$rowData', '
  869. global $txt;
  870. if (empty($rowData[\'hidden\']))
  871. return $txt[\'smileys_location_form\'];
  872. elseif ($rowData[\'hidden\'] == 1)
  873. return $txt[\'smileys_location_hidden\'];
  874. else
  875. return $txt[\'smileys_location_popup\'];
  876. '),
  877. 'class' => 'windowbg',
  878. ),
  879. 'sort' => array(
  880. 'default' => 'FIND_IN_SET(hidden, \'' . implode(',', array_keys($smiley_locations)) . '\')',
  881. 'reverse' => 'FIND_IN_SET(hidden, \'' . implode(',', array_keys($smiley_locations)) . '\') DESC',
  882. ),
  883. ),
  884. 'tooltip' => array(
  885. 'header' => array(
  886. 'value' => $txt['smileys_description'],
  887. ),
  888. 'data' => array(
  889. 'function' => create_function('$rowData', empty($modSettings['smileys_dir']) || !is_dir($modSettings['smileys_dir']) ? '
  890. return htmlspecialchars($rowData[\'description\']);
  891. ' : '
  892. global $context, $txt, $modSettings;
  893. // Check if there are smileys missing in some sets.
  894. $missing_sets = array();
  895. foreach ($context[\'smiley_sets\'] as $smiley_set)
  896. if (!file_exists(sprintf(\'%1$s/%2$s/%3$s\', $modSettings[\'smileys_dir\'], $smiley_set[\'path\'], $rowData[\'filename\'])))
  897. $missing_sets[] = $smiley_set[\'path\'];
  898. $description = htmlspecialchars($rowData[\'description\']);
  899. if (!empty($missing_sets))
  900. $description .= sprintf(\'<br /><span class="smalltext"><strong>%1$s:</strong> %2$s</span>\', $txt[\'smileys_not_found_in_set\'], implode(\', \', $missing_sets));
  901. return $description;
  902. '),
  903. 'class' => 'windowbg',
  904. ),
  905. 'sort' => array(
  906. 'default' => 'description',
  907. 'reverse' => 'description DESC',
  908. ),
  909. ),
  910. 'modify' => array(
  911. 'header' => array(
  912. 'value' => $txt['smileys_modify'],
  913. ),
  914. 'data' => array(
  915. 'sprintf' => array(
  916. 'format' => '<a href="' . $scripturl . '?action=admin;area=smileys;sa=modifysmiley;smiley=%1$d">' . $txt['smileys_modify'] . '</a>',
  917. 'params' => array(
  918. 'id_smiley' => false,
  919. ),
  920. ),
  921. 'style' => 'text-align: center;',
  922. ),
  923. ),
  924. 'check' => array(
  925. 'header' => array(
  926. 'value' => '<input type="checkbox" onclick="invertAll(this, this.form);" class="input_check" />',
  927. ),
  928. 'data' => array(
  929. 'sprintf' => array(
  930. 'format' => '<input type="checkbox" name="checked_smileys[]" value="%1$d" class="input_check" />',
  931. 'params' => array(
  932. 'id_smiley' => false,
  933. ),
  934. ),
  935. 'style' => 'text-align: center',
  936. ),
  937. ),
  938. ),
  939. 'form' => array(
  940. 'href' => $scripturl . '?action=admin;area=smileys;sa=editsmileys',
  941. 'name' => 'smileyForm',
  942. ),
  943. 'additional_rows' => array(
  944. array(
  945. 'position' => 'above_column_headers',
  946. 'value' => $smileyset_option_list,
  947. 'style' => 'text-align: right;',
  948. ),
  949. array(
  950. 'position' => 'below_table_data',
  951. 'value' => '
  952. <select name="smiley_action" onchange="makeChanges(this.value);">
  953. <option value="-1">' . $txt['smileys_with_selected'] . ':</option>
  954. <option value="-1">--------------</option>
  955. <option value="hidden">' . $txt['smileys_make_hidden'] . '</option>
  956. <option value="post">' . $txt['smileys_show_on_post'] . '</option>
  957. <option value="popup">' . $txt['smileys_show_on_popup'] . '</option>
  958. <option value="delete">' . $txt['smileys_remove'] . '</option>
  959. </select>
  960. <noscript><input type="submit" name="perform_action" value="' . $txt['go'] . '" class="button_submit" /></noscript>',
  961. 'style' => 'text-align: right;',
  962. ),
  963. ),
  964. 'javascript' => '
  965. function makeChanges(action)
  966. {
  967. if (action == \'-1\')
  968. return false;
  969. else if (action == \'delete\')
  970. {
  971. if (confirm(\'' . $txt['smileys_confirm'] . '\'))
  972. document.forms.smileyForm.submit();
  973. }
  974. else
  975. document.forms.smileyForm.submit();
  976. return true;
  977. }
  978. function changeSet(newSet)
  979. {
  980. var currentImage, i, knownSmileys = [];
  981. if (knownSmileys.length == 0)
  982. {
  983. for (var i = 0, n = document.images.length; i < n; i++)
  984. if (document.images[i].id.substr(0, 6) == \'smiley\')
  985. knownSmileys[knownSmileys.length] = document.images[i].id.substr(6);
  986. }
  987. for (i = 0; i < knownSmileys.length; i++)
  988. {
  989. currentImage = document.getElementById("smiley" + knownSmileys[i]);
  990. currentImage.src = "' . $modSettings['smileys_url'] . '/" + newSet + "/" + document.forms.smileyForm["smileys[" + knownSmileys[i] + "][filename]"].value;
  991. }
  992. }',
  993. );
  994. require_once($sourcedir . '/Subs-List.php');
  995. createList($listOptions);
  996. // The list is the only thing to show, so make it the main template.
  997. $context['default_list'] = 'smiley_list';
  998. $context['sub_template'] = 'show_list';
  999. }
  1000. // Modifying smileys.
  1001. elseif ($context['sub_action'] == 'modifysmiley')
  1002. {
  1003. // Get a list of all known smiley sets.
  1004. $context['smileys_dir'] = empty($modSettings['smileys_dir']) ? $boarddir . '/Smileys' : $modSettings['smileys_dir'];
  1005. $context['smileys_dir_found'] = is_dir($context['smileys_dir']);
  1006. $context['smiley_sets'] = explode(',', $modSettings['smiley_sets_known']);
  1007. $set_names = explode("\n", $modSettings['smiley_sets_names']);
  1008. foreach ($context['smiley_sets'] as $i => $set)
  1009. $context['smiley_sets'][$i] = array(
  1010. 'id' => $i,
  1011. 'path' => htmlspecialchars($set),
  1012. 'name' => htmlspecialchars($set_names[$i]),
  1013. 'selected' => $set == $modSettings['smiley_sets_default']
  1014. );
  1015. $context['selected_set'] = $modSettings['smiley_sets_default'];
  1016. // Get all possible filenames for the smileys.
  1017. $context['filenames'] = array();
  1018. if ($context['smileys_dir_found'])
  1019. {
  1020. foreach ($context['smiley_sets'] as $smiley_set)
  1021. {
  1022. if (!file_exists($context['smileys_dir'] . '/' . un_htmlspecialchars($smiley_set['path'])))
  1023. continue;
  1024. $dir = dir($context['smileys_dir'] . '/' . un_htmlspecialchars($smiley_set['path']));
  1025. while ($entry = $dir->read())
  1026. {
  1027. if (!in_array($entry, $context['filenames']) && in_array(strrchr($entry, '.'), array('.jpg', '.gif', '.jpeg', '.png')))
  1028. $context['filenames'][strtolower($entry)] = array(
  1029. 'id' => htmlspecialchars($entry),
  1030. 'selected' => false,
  1031. );
  1032. }
  1033. $dir->close();
  1034. }
  1035. ksort($context['filenames']);
  1036. }
  1037. $request = $smcFunc['db_query']('', '
  1038. SELECT id_smiley AS id, code, filename, description, hidden AS location, 0 AS is_new
  1039. FROM {db_prefix}smileys
  1040. WHERE id_smiley = {int:current_smiley}',
  1041. array(
  1042. 'current_smiley' => (int) $_REQUEST['smiley'],
  1043. )
  1044. );
  1045. if ($smcFunc['db_num_rows']($request) != 1)
  1046. fatal_lang_error('smiley_not_found');
  1047. $context['current_smiley'] = $smcFunc['db_fetch_assoc']($request);
  1048. $smcFunc['db_free_result']($request);
  1049. $context['current_smiley']['code'] = htmlspecialchars($context['current_smiley']['code']);
  1050. $context['current_smiley']['filename'] = htmlspecialchars($context['current_smiley']['filename']);
  1051. $context['current_smiley']['description'] = htmlspecialchars($context['current_smiley']['description']);
  1052. if (isset($context['filenames'][strtolower($context['current_smiley']['filename'])]))
  1053. $context['filenames'][strtolower($context['current_smiley']['filename'])]['selected'] = true;
  1054. }
  1055. }
  1056. /**
  1057. * Callback function for createList().
  1058. *
  1059. * @param unknown_type $start
  1060. * @param unknown_type $items_per_page
  1061. * @param unknown_type $sort
  1062. */
  1063. function list_getSmileys($start, $items_per_page, $sort)
  1064. {
  1065. global $smcFunc;
  1066. $request = $smcFunc['db_query']('', '
  1067. SELECT id_smiley, code, filename, description, smiley_row, smiley_order, hidden
  1068. FROM {db_prefix}smileys
  1069. ORDER BY ' . $sort,
  1070. array(
  1071. )
  1072. );
  1073. $smileys = array();
  1074. while ($row = $smcFunc['db_fetch_assoc']($request))
  1075. $smileys[] = $row;
  1076. $smcFunc['db_free_result']($request);
  1077. return $smileys;
  1078. }
  1079. /**
  1080. * Callback function for createList().
  1081. */
  1082. function list_getNumSmileys()
  1083. {
  1084. global $smcFunc;
  1085. $request = $smcFunc['db_query']('', '
  1086. SELECT COUNT(*)
  1087. FROM {db_prefix}smileys',
  1088. array(
  1089. )
  1090. );
  1091. list($numSmileys) = $smcFunc['db_fetch_row'];
  1092. $smcFunc['db_free_result']($request);
  1093. return $numSmileys;
  1094. }
  1095. /**
  1096. * Allows to edit smileys order.
  1097. */
  1098. function EditSmileyOrder()
  1099. {
  1100. global $modSettings, $context, $settings, $txt, $boarddir, $smcFunc;
  1101. // Move smileys to another position.
  1102. if (isset($_REQUEST['reorder']))
  1103. {
  1104. checkSession('get');
  1105. $_GET['location'] = empty($_GET['location']) || $_GET['location'] != 'popup' ? 0 : 2;
  1106. $_GET['source'] = empty($_GET['source']) ? 0 : (int) $_GET['source'];
  1107. if (empty($_GET['source']))
  1108. fatal_lang_error('smiley_not_found');
  1109. if (!empty($_GET['after']))
  1110. {
  1111. $_GET['after'] = (int) $_GET['after'];
  1112. $request = $smcFunc['db_query']('', '
  1113. SELECT smiley_row, smiley_order, hidden
  1114. FROM {db_prefix}smileys
  1115. WHERE hidden = {int:location}
  1116. AND id_smiley = {int:after_smiley}',
  1117. array(
  1118. 'location' => $_GET['location'],
  1119. 'after_smiley' => $_GET['after'],
  1120. )
  1121. );
  1122. if ($smcFunc['db_num_rows']($request) != 1)
  1123. fatal_lang_error('smiley_not_found');
  1124. list ($smiley_row, $smiley_order, $smileyLocation) = $smcFunc['db_fetch_row']($request);
  1125. $smcFunc['db_free_result']($request);
  1126. }
  1127. else
  1128. {
  1129. $smiley_row = (int) $_GET['row'];
  1130. $smiley_order = -1;
  1131. $smileyLocation = (int) $_GET['location'];
  1132. }
  1133. $smcFunc['db_query']('', '
  1134. UPDATE {db_prefix}smileys
  1135. SET smiley_order = smiley_order + 1
  1136. WHERE hidden = {int:new_location}
  1137. AND smiley_row = {int:smiley_row}
  1138. AND smiley_order > {int:smiley_order}',
  1139. array(
  1140. 'new_location' => $_GET['location'],
  1141. 'smiley_row' => $smiley_row,
  1142. 'smiley_order' => $smiley_order,
  1143. )
  1144. );
  1145. $smcFunc['db_query']('', '
  1146. UPDATE {db_prefix}smileys
  1147. SET
  1148. smiley_order = {int:smiley_order} + 1,
  1149. smiley_row = {int:smiley_row},
  1150. hidden = {int:new_location}
  1151. WHERE id_smiley = {int:current_smiley}',
  1152. array(
  1153. 'smiley_order' => $smiley_order,
  1154. 'smiley_row' => $smiley_row,
  1155. 'new_location' => $smileyLocation,
  1156. 'current_smiley' => $_GET['source'],
  1157. )
  1158. );
  1159. cache_put_data('parsing_smileys', null, 480);
  1160. cache_put_data('posting_smileys', null, 480);
  1161. }
  1162. $request = $smcFunc['db_query']('', '
  1163. SELECT id_smiley, code, filename, description, smiley_row, smiley_order, hidden
  1164. FROM {db_prefix}smileys
  1165. WHERE hidden != {int:popup}
  1166. ORDER BY smiley_order, smiley_row',
  1167. array(
  1168. 'popup' => 1,
  1169. )
  1170. );
  1171. $context['smileys'] = array(
  1172. 'postform' => array(
  1173. 'rows' => array(),
  1174. ),
  1175. 'popup' => array(
  1176. 'rows' => array(),
  1177. ),
  1178. );
  1179. while ($row = $smcFunc['db_fetch_assoc']($request))
  1180. {
  1181. $location = empty($row['hidden']) ? 'postform' : 'popup';
  1182. $context['smileys'][$location]['rows'][$row['smiley_row']][] = array(
  1183. 'id' => $row['id_smiley'],
  1184. 'code' => htmlspecialchars($row['code']),
  1185. 'filename' => htmlspecialchars($row['filename']),
  1186. 'description' => htmlspecialchars($row['description']),
  1187. 'row' => $row['smiley_row'],
  1188. 'order' => $row['smiley_order'],
  1189. 'selected' => !empty($_REQUEST['move']) && $_REQUEST['move'] == $row['id_smiley'],
  1190. );
  1191. }
  1192. $smcFunc['db_free_result']($request);
  1193. $context['move_smiley'] = empty($_REQUEST['move']) ? 0 : (int) $_REQUEST['move'];
  1194. // Make sure all rows are sequential.
  1195. foreach (array_keys($context['smileys']) as $location)
  1196. $context['smileys'][$location] = array(
  1197. 'id' => $location,
  1198. 'title' => $location == 'postform' ? $txt['smileys_location_form'] : $txt['smileys_location_popup'],
  1199. 'description' => $location == 'postform' ? $txt['smileys_location_form_description'] : $txt['smileys_location_popup_description'],
  1200. 'last_row' => count($context['smileys'][$location]['rows']),
  1201. 'rows' => array_values($context['smileys'][$location]['rows']),
  1202. );
  1203. // Check & fix smileys that are not ordered properly in the database.
  1204. foreach (array_keys($context['smileys']) as $location)
  1205. {
  1206. foreach ($context['smileys'][$location]['rows'] as $id => $smiley_row)
  1207. {
  1208. // Fix empty rows if any.
  1209. if ($id != $smiley_row[0]['row'])
  1210. {
  1211. $smcFunc['db_query']('', '
  1212. UPDATE {db_prefix}smileys
  1213. SET smiley_row = {int:new_row}
  1214. WHERE smiley_row = {int:current_row}
  1215. AND hidden = {int:location}',
  1216. array(
  1217. 'new_row' => $id,
  1218. 'current_row' => $smiley_row[0]['row'],
  1219. 'location' => $location == 'postform' ? '0' : '2',
  1220. )
  1221. );
  1222. // Only change the first row value of the first smiley (we don't need the others :P).
  1223. $context['smileys'][$location]['rows'][$id][0]['row'] = $id;
  1224. }
  1225. // Make sure the smiley order is always sequential.
  1226. foreach ($smiley_row as $order_id => $smiley)
  1227. if ($order_id != $smiley['order'])
  1228. $smcFunc['db_query']('', '
  1229. UPDATE {db_prefix}smileys
  1230. SET smiley_order = {int:new_order}
  1231. WHERE id_smiley = {int:current_smiley}',
  1232. array(
  1233. 'new_order' => $order_id,
  1234. 'current_smiley' => $smiley['id'],
  1235. )
  1236. );
  1237. }
  1238. }
  1239. cache_put_data('parsing_smileys', null, 480);
  1240. cache_put_data('posting_smileys', null, 480);
  1241. }
  1242. /**
  1243. * Install a smiley set.
  1244. */
  1245. function InstallSmileySet()
  1246. {
  1247. global $sourcedir, $boarddir, $modSettings, $smcFunc;
  1248. isAllowedTo('manage_smileys');
  1249. checkSession('request');
  1250. require_once($sourcedir . '/Subs-Package.php');
  1251. $name = strtok(basename(isset($_FILES['set_gz']) ? $_FILES['set_gz']['name'] : $_REQUEST['set_gz']), '.');
  1252. $name = preg_replace(array('/\s/', '/\.[\.]+/', '/[^\w_\.\-]/'), array('_', '.', ''), $name);
  1253. //@todo Decide: overwrite or not?
  1254. if (isset($_FILES['set_gz']) && is_uploaded_file($_FILES['set_gz']['tmp_name']) && (ini_get('open_basedir') != '' || file_exists($_FILES['set_gz']['tmp_name'])))
  1255. $extracted = read_tgz_file($_FILES['set_gz']['tmp_name'], $boarddir . '/Smileys/' . $name);
  1256. elseif (isset($_REQUEST['set_gz']))
  1257. {
  1258. // Check that the smiley is from simplemachines.org, for now... maybe add mirroring later.
  1259. if (preg_match('~^http://[\w_\-]+\.simplemachines\.org/~', $_REQUEST['set_gz']) == 0 || strpos($_REQUEST['set_gz'], 'dlattach') !== false)
  1260. fatal_lang_error('not_on_simplemachines');
  1261. $extracted = read_tgz_file($_REQUEST['set_gz'], $boarddir . '/Smileys/' . $name);
  1262. }
  1263. else
  1264. redirectexit('action=admin;area=smileys');
  1265. updateSettings(array(
  1266. 'smiley_sets_known' => $modSettings['smiley_sets_known'] . ',' . $name,
  1267. 'smiley_sets_names' => $modSettings['smiley_sets_names'] . "\n" . strtok(basename(isset($_FILES['set_gz']) ? $_FILES['set_gz']['name'] : $_REQUEST['set_gz']), '.'),
  1268. ));
  1269. cache_put_data('parsing_smileys', null, 480);
  1270. cache_put_data('posting_smileys', null, 480);
  1271. // @todo Add some confirmation?
  1272. redirectexit('action=admin;area=smileys');
  1273. }
  1274. /**
  1275. * A function to import new smileys from an existing directory into the database.
  1276. *
  1277. * @param string $smileyPath
  1278. */
  1279. function ImportSmileys($smileyPath)
  1280. {
  1281. global $modSettings, $smcFunc;
  1282. if (empty($modSettings['smileys_dir']) || !is_dir($modSettings['smileys_dir'] . '/' . $smileyPath))
  1283. fatal_lang_error('smiley_set_unable_to_import');
  1284. $smileys = array();
  1285. $dir = dir($modSettings['smileys_dir'] . '/' . $smileyPath);
  1286. while ($entry = $dir->read())
  1287. {
  1288. if (in_array(strrchr($entry, '.'), array('.jpg', '.gif', '.jpeg', '.png')))
  1289. $smileys[strtolower($entry)] = $entry;
  1290. }
  1291. $dir->close();
  1292. // Exclude the smileys that are already in the database.
  1293. $request = $smcFunc['db_query']('', '
  1294. SELECT filename
  1295. FROM {db_prefix}smileys
  1296. WHERE filename IN ({array_string:smiley_list})',
  1297. array(
  1298. 'smiley_list' => $smileys,
  1299. )
  1300. );
  1301. while ($row = $smcFunc['db_fetch_assoc']($request))
  1302. if (isset($smileys[strtolower($row['filename'])]))
  1303. unset($smileys[strtolower($row['filename'])]);
  1304. $smcFunc['db_free_result']($request);
  1305. $request = $smcFunc['db_query']('', '
  1306. SELECT MAX(smiley_order)
  1307. FROM {db_prefix}smileys
  1308. WHERE hidden = {int:postform}
  1309. AND smiley_row = {int:first_row}',
  1310. array(
  1311. 'postform' => 0,
  1312. 'first_row' => 0,
  1313. )
  1314. );
  1315. list ($smiley_order) = $smcFunc['db_fetch_row']($request);
  1316. $smcFunc['db_free_result']($request);
  1317. $new_smileys = array();
  1318. foreach ($smileys as $smiley)
  1319. if (strlen($smiley) <= 48)
  1320. $new_smileys[] = array(':' . strtok($smiley, '.') . ':', $smiley, strtok($smiley, '.'), 0, ++$smiley_order);
  1321. if (!empty($new_smileys))
  1322. {
  1323. $smcFunc['db_insert']('',
  1324. '{db_prefix}smileys',
  1325. array(
  1326. 'code' => 'string-30', 'filename' => 'string-48', 'description' => 'string-80', 'smiley_row' => 'int', 'smiley_order' => 'int',
  1327. ),
  1328. $new_smileys,
  1329. array('id_smiley')
  1330. );
  1331. // Make sure the smiley codes are still in the right order.
  1332. sortSmileyTable();
  1333. cache_put_data('parsing_smileys', null, 480);
  1334. cache_put_data('posting_smileys', null, 480);
  1335. }
  1336. }
  1337. /**
  1338. * Allows to edit the message icons.
  1339. */
  1340. function EditMessageIcons()
  1341. {
  1342. global $user_info, $modSettings, $context, $settings, $txt;
  1343. global $boarddir, $smcFunc, $scripturl, $sourcedir;
  1344. // Get a list of icons.
  1345. $context['icons'] = array();
  1346. $request = $smcFunc['db_query']('', '
  1347. SELECT m.id_icon, m.title, m.filename, m.icon_order, m.id_board, b.name AS board_name
  1348. FROM {db_prefix}message_icons AS m
  1349. LEFT JOIN {db_prefix}boards AS b ON (b.id_board = m.id_board)
  1350. WHERE ({query_see_board} OR b.id_board IS NULL)',
  1351. array(
  1352. )
  1353. );
  1354. $last_icon = 0;
  1355. $trueOrder = 0;
  1356. while ($row = $smcFunc['db_fetch_assoc']($request))
  1357. {
  1358. $context['icons'][$row['id_icon']] = array(
  1359. 'id' => $row['id_icon'],
  1360. 'title' => $row['title'],
  1361. 'filename' => $row['filename'],
  1362. 'image_url' => $settings[file_exists($settings['theme_dir'] . '/images/post/' . $row['filename'] . '.png') ? 'actual_images_url' : 'default_images_url'] . '/post/' . $row['filename'] . '.png',
  1363. 'board_id' => $row['id_board'],
  1364. 'board' => empty($row['board_name']) ? $txt['icons_edit_icons_all_boards'] : $row['board_name'],
  1365. 'order' => $row['icon_order'],
  1366. 'true_order' => $trueOrder++,
  1367. 'after' => $last_icon,
  1368. );
  1369. $last_icon = $row['id_icon'];
  1370. }
  1371. $smcFunc['db_free_result']($request);
  1372. // Submitting a form?
  1373. if (isset($_POST[$context['session_var']]))
  1374. {
  1375. checkSession();
  1376. // Deleting icons?
  1377. if (isset($_POST['delete']) && !empty($_POST['checked_icons']))
  1378. {
  1379. $deleteIcons = array();
  1380. foreach ($_POST['checked_icons'] as $icon)
  1381. $deleteIcons[] = (int) $icon;
  1382. // Do the actual delete!
  1383. $smcFunc['db_query']('', '
  1384. DELETE FROM {db_prefix}message_icons
  1385. WHERE id_icon IN ({array_int:icon_list})',
  1386. array(
  1387. 'icon_list' => $deleteIcons,
  1388. )
  1389. );
  1390. }
  1391. // Editing/Adding an icon?
  1392. elseif ($context['sub_action'] == 'editicon' && isset($_GET['icon']))
  1393. {
  1394. $_GET['icon'] = (int) $_GET['icon'];
  1395. // Do some preperation with the data... like check the icon exists *somewhere*
  1396. if (strpos($_POST['icon_filename'], '.gif') !== false)
  1397. $_POST['icon_filename'] = substr($_POST['icon_filename'], 0, -4);
  1398. if (!file_exists($settings['default_theme_dir'] . '/images/post/' . $_POST['icon_filename'] . '.gif'))
  1399. fatal_lang_error('icon_not_found');
  1400. // There is a 16 character limit on message icons...
  1401. elseif (strlen($_POST['icon_filename']) > 16)
  1402. fatal_lang_error('icon_name_too_long');
  1403. elseif ($_POST['icon_location'] == $_GET['icon'] && !empty($_GET['icon']))
  1404. fatal_lang_error('icon_after_itself');
  1405. // First do the sorting... if this is an edit reduce the order of everything after it by one ;)
  1406. if ($_GET['icon'] != 0)
  1407. {
  1408. $oldOrder = $context['icons'][$_GET['icon']]['true_order'];
  1409. foreach ($context['icons'] as $id => $data)
  1410. if ($data['true_order'] > $oldOrder)
  1411. $context['icons'][$id]['true_order']--;
  1412. }
  1413. // If there are no existing icons and this is a new one, set the id to 1 (mainly for non-mysql)
  1414. if (empty($_GET['icon']) && empty($context['icons']))
  1415. $_GET['icon'] = 1;
  1416. // Get the new order.
  1417. $newOrder = $_POST['icon_location'] == 0 ? 0 : $context['icons'][$_POST['icon_location']]['true_order'] + 1;
  1418. // Do the same, but with the one that used to be after this icon, done to avoid conflict.
  1419. foreach ($context['icons'] as $id => $data)
  1420. if ($data['true_order'] >= $newOrder)
  1421. $context['icons'][$id]['true_order']++;
  1422. // Finally set the current icon's position!
  1423. $context['icons'][$_GET['icon']]['true_order'] = $newOrder;
  1424. // Simply replace the existing data for the other bits.
  1425. $context['icons'][$_GET['icon']]['title'] = $_POST['icon_description'];
  1426. $context['icons'][$_GET['icon']]['filename'] = $_POST['icon_filename'];
  1427. $context['icons'][$_GET['icon']]['board_id'] = (int) $_POST['icon_board'];
  1428. // Do a huge replace ;)
  1429. $iconInsert = array();
  1430. $iconInsert_new = array();
  1431. foreach ($context['icons'] as $id => $icon)
  1432. {
  1433. if ($id != 0)
  1434. {
  1435. $iconInsert[] = array($id, $icon['board_id'], $icon['title'], $icon['filename'], $icon['true_order']);
  1436. }
  1437. else
  1438. {
  1439. $iconInsert_new[] = array($icon['board_id'], $icon['title'], $icon['filename'], $icon['true_order']);
  1440. }
  1441. }
  1442. $smcFunc['db_insert']('replace',
  1443. '{db_prefix}message_icons',
  1444. array('id_icon' => 'int', 'id_board' => 'int', 'title' => 'string-80', 'filename' => 'string-80', 'icon_order' => 'int'),
  1445. $iconInsert,
  1446. array('id_icon')
  1447. );
  1448. if (!empty($iconInsert_new))
  1449. {
  1450. $smcFunc['db_insert']('replace',
  1451. '{db_prefix}message_icons',
  1452. array('id_board' => 'int', 'title' => 'string-80', 'filename' => 'string-80', 'icon_order' => 'int'),
  1453. $iconInsert_new,
  1454. array('id_icon')
  1455. );
  1456. }
  1457. }
  1458. // Sort by order, so it is quicker :)
  1459. $smcFunc['db_query']('alter_table_icons', '
  1460. ALTER TABLE {db_prefix}message_icons
  1461. ORDER BY icon_order',
  1462. array(
  1463. 'db_error_skip' => true,
  1464. )
  1465. );
  1466. // Unless we're adding a new thing, we'll escape
  1467. if (!isset($_POST['add']))
  1468. redirectexit('action=admin;area=smileys;sa=editicons');
  1469. }
  1470. $context[$context['admin_menu_name']]['current_subsection'] = 'editicons';
  1471. $listOptions = array(
  1472. 'id' => 'message_icon_list',
  1473. 'base_href' => $scripturl . '?action=admin;area=smileys;sa=editicons',
  1474. 'get_items' => array(
  1475. 'function' => 'list_getMessageIcons',
  1476. ),
  1477. 'no_items_label' => $txt['icons_no_entries'],
  1478. 'columns' => array(
  1479. 'icon' => array(
  1480. 'data' => array(
  1481. 'function' => create_function('$rowData', '
  1482. global $settings;
  1483. $images_url = $settings[file_exists(sprintf(\'%1$s/images/post/%2$s.png\', $settings[\'theme_dir\'], $rowData[\'filename\'])) ? \'actual_images_url\' : \'default_images_url\'];
  1484. return sprintf(\'<img src="%1$s/post/%2$s.png" alt="%3$s" />\', $images_url, $rowData[\'filename\'], htmlspecialchars($rowData[\'title\']));
  1485. '),
  1486. ),
  1487. 'style' => 'text-align: center;',
  1488. ),
  1489. 'filename' => array(
  1490. 'header' => array(
  1491. 'value' => $txt['smileys_filename'],
  1492. ),
  1493. 'data' => array(
  1494. 'sprintf' => array(
  1495. 'format' => '%1$s.png',
  1496. 'params' => array(
  1497. 'filename' => true,
  1498. ),
  1499. ),
  1500. ),
  1501. ),
  1502. 'tooltip' => array(
  1503. 'header' => array(
  1504. 'value' => $txt['smileys_description'],
  1505. ),
  1506. 'data' => array(
  1507. 'db_htmlsafe' => 'title',
  1508. 'class' => 'windowbg',
  1509. ),
  1510. ),
  1511. 'board' => array(
  1512. 'header' => array(
  1513. 'value' => $txt['icons_board'],
  1514. ),
  1515. 'data' => array(
  1516. 'function' => create_function('$rowData', '
  1517. global $txt;
  1518. return empty($rowData[\'board_name\']) ? $txt[\'icons_edit_icons_all_boards\'] : $rowData[\'board_name\'];
  1519. '),
  1520. ),
  1521. ),
  1522. 'modify' => array(
  1523. 'header' => array(
  1524. 'value' => $txt['smileys_modify'],
  1525. ),
  1526. 'data' => array(
  1527. 'sprintf' => array(
  1528. 'format' => '<a href="' . $scripturl . '?action=admin;area=smileys;sa=editicon;icon=%1$s">' . $txt['smileys_modify'] . '</a>',
  1529. 'params' => array(
  1530. 'id_icon' => false,
  1531. ),
  1532. ),
  1533. 'style' => 'text-align: center',
  1534. ),
  1535. ),
  1536. 'check' => array(
  1537. 'header' => array(
  1538. 'value' => '<input type="checkbox" onclick="invertAll(this, this.form);" class="input_check" />',
  1539. ),
  1540. 'data' => array(
  1541. 'sprintf' => array(
  1542. 'format' => '<input type="checkbox" name="checked_icons[]" value="%1$d" class="input_check" />',
  1543. 'params' => array(
  1544. 'id_icon' => false,
  1545. ),
  1546. ),
  1547. 'style' => 'text-align: center',
  1548. ),
  1549. ),
  1550. ),
  1551. 'form' => array(
  1552. 'href' => $scripturl . '?action=admin;area=smileys;sa=editicons',
  1553. ),
  1554. 'additional_rows' => array(
  1555. array(
  1556. 'position' => 'below_table_data',
  1557. 'value' => '[<a href="' . $scripturl . '?action=admin;area=smileys;sa=editicon">' . $txt['icons_add_new'] . '</a>] <input type="submit" name="delete" value="' . $txt['quickmod_delete_selected'] . '" class="button_submit" />',
  1558. ),
  1559. ),
  1560. );
  1561. require_once($sourcedir . '/Subs-List.php');
  1562. createList($listOptions);
  1563. // If we're adding/editing an icon we'll need a list of boards
  1564. if ($context['sub_action'] == 'editicon' || isset($_POST['add']))
  1565. {
  1566. // Force the sub_template just in case.
  1567. $context['sub_template'] = 'editicon';
  1568. $context['new_icon'] = !isset($_GET['icon']);
  1569. // Get the properties of the current icon from the icon list.
  1570. if (!$context['new_icon'])
  1571. $context['icon'] = $context['icons'][$_GET['icon']];
  1572. // Get a list of boards needed for assigning this icon to a specific board.
  1573. $boardListOptions = array(
  1574. 'use_permissions' => true,
  1575. 'selected_board' => isset($context['icon']['board_id']) ? $context['icon']['board_id'] : 0,
  1576. );
  1577. require_once($sourcedir . '/Subs-MessageIndex.php');
  1578. $context['categories'] = getBoardList($boardListOptions);
  1579. }
  1580. }
  1581. /**
  1582. * Callback function for createList().
  1583. *
  1584. * @param $start
  1585. * @param $items_per_page
  1586. * @param $sort
  1587. */
  1588. function list_getMessageIcons($start, $items_per_page, $sort)
  1589. {
  1590. global $smcFunc, $user_info;
  1591. $request = $smcFunc['db_query']('', '
  1592. SELECT m.id_icon, m.title, m.filename, m.icon_order, m.id_board, b.name AS board_name
  1593. FROM {db_prefix}message_icons AS m
  1594. LEFT JOIN {db_prefix}boards AS b ON (b.id_board = m.id_board)
  1595. WHERE ({query_see_board} OR b.id_board IS NULL)',
  1596. array(
  1597. )
  1598. );
  1599. $message_icons = array();
  1600. while ($row = $smcFunc['db_fetch_assoc']($request))
  1601. $message_icons[] = $row;
  1602. $smcFunc['db_free_result']($request);
  1603. return $message_icons;
  1604. }
  1605. /**
  1606. * This function sorts the smiley table by code length,
  1607. * it is needed as MySQL withdrew support for functions in order by.
  1608. * @todo is this ordering itself needed?
  1609. */
  1610. function sortSmileyTable()
  1611. {
  1612. global $smcFunc;
  1613. db_extend('packages');
  1614. // Add a sorting column.
  1615. $smcFunc['db_add_column']('{db_prefix}smileys', array('name' => 'temp_order', 'size' => 8, 'type' => 'mediumint', 'null' => false));
  1616. // Set the contents of this column.
  1617. $smcFunc['db_query']('set_smiley_order', '
  1618. UPDATE {db_prefix}smileys
  1619. SET temp_order = LENGTH(code)',
  1620. array(
  1621. )
  1622. );
  1623. // Order the table by this column.
  1624. $smcFunc['db_query']('alter_table_smileys', '
  1625. ALTER TABLE {db_prefix}smileys
  1626. ORDER BY temp_order DESC',
  1627. array(
  1628. 'db_error_skip' => true,
  1629. )
  1630. );
  1631. // Remove the sorting column.
  1632. $smcFunc['db_remove_column']('{db_prefix}smileys', 'temp_order');
  1633. }
  1634. ?>