Admin.php 36 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997
  1. <?php
  2. /**
  3. * This file, unpredictable as this might be, handles basic administration.
  4. *
  5. * Simple Machines Forum (SMF)
  6. *
  7. * @package SMF
  8. * @author Simple Machines
  9. *
  10. * @copyright 2011 Simple Machines
  11. * @license http://www.simplemachines.org/about/smf/license.php BSD
  12. *
  13. * @version 2.0
  14. */
  15. if (!defined('SMF'))
  16. die('Hacking attempt...');
  17. /**
  18. * The main admin handling function.
  19. * It initialises all the basic context required for the admin center.
  20. * It passes execution onto the relevant admin section.
  21. * If the passed section is not found it shows the admin home page.
  22. */
  23. function AdminMain()
  24. {
  25. global $txt, $context, $scripturl, $sc, $modSettings, $user_info, $settings, $sourcedir, $options, $smcFunc, $boarddir;
  26. // Load the language and templates....
  27. loadLanguage('Admin');
  28. loadTemplate('Admin', 'admin');
  29. // No indexing evil stuff.
  30. $context['robot_no_index'] = true;
  31. require_once($sourcedir . '/Subs-Menu.php');
  32. // Some preferences.
  33. $context['admin_preferences'] = !empty($options['admin_preferences']) ? unserialize($options['admin_preferences']) : array();
  34. // Define all the menu structure - see Subs-Menu.php for details!
  35. $admin_areas = array(
  36. 'forum' => array(
  37. 'title' => $txt['admin_main'],
  38. 'permission' => array('admin_forum', 'manage_permissions', 'moderate_forum', 'manage_membergroups', 'manage_bans', 'send_mail', 'edit_news', 'manage_boards', 'manage_smileys', 'manage_attachments'),
  39. 'areas' => array(
  40. 'index' => array(
  41. 'label' => $txt['admin_center'],
  42. 'function' => 'AdminHome',
  43. 'icon' => 'administration.gif',
  44. ),
  45. 'credits' => array(
  46. 'label' => $txt['support_credits_title'],
  47. 'function' => 'AdminHome',
  48. 'icon' => 'support.gif',
  49. ),
  50. 'news' => array(
  51. 'label' => $txt['news_title'],
  52. 'file' => 'ManageNews.php',
  53. 'function' => 'ManageNews',
  54. 'icon' => 'news.gif',
  55. 'permission' => array('edit_news', 'send_mail', 'admin_forum'),
  56. 'subsections' => array(
  57. 'editnews' => array($txt['admin_edit_news'], 'edit_news'),
  58. 'mailingmembers' => array($txt['admin_newsletters'], 'send_mail'),
  59. 'settings' => array($txt['settings'], 'admin_forum'),
  60. ),
  61. ),
  62. 'packages' => array(
  63. 'label' => $txt['package'],
  64. 'file' => 'Packages.php',
  65. 'function' => 'Packages',
  66. 'permission' => array('admin_forum'),
  67. 'icon' => 'packages.gif',
  68. 'subsections' => array(
  69. 'browse' => array($txt['browse_packages']),
  70. 'packageget' => array($txt['download_packages'], 'url' => $scripturl . '?action=admin;area=packages;sa=packageget;get'),
  71. 'installed' => array($txt['installed_packages']),
  72. 'perms' => array($txt['package_file_perms']),
  73. 'options' => array($txt['package_settings']),
  74. ),
  75. ),
  76. 'search' => array(
  77. 'function' => 'AdminSearch',
  78. 'permission' => array('admin_forum'),
  79. 'select' => 'index'
  80. ),
  81. ),
  82. ),
  83. 'config' => array(
  84. 'title' => $txt['admin_config'],
  85. 'permission' => array('admin_forum'),
  86. 'areas' => array(
  87. 'corefeatures' => array(
  88. 'label' => $txt['core_settings_title'],
  89. 'file' => 'ManageSettings.php',
  90. 'function' => 'ModifyCoreFeatures',
  91. 'icon' => 'corefeatures.gif',
  92. ),
  93. 'featuresettings' => array(
  94. 'label' => $txt['modSettings_title'],
  95. 'file' => 'ManageSettings.php',
  96. 'function' => 'ModifyFeatureSettings',
  97. 'icon' => 'features.gif',
  98. 'subsections' => array(
  99. 'basic' => array($txt['mods_cat_features']),
  100. 'layout' => array($txt['mods_cat_layout']),
  101. 'karma' => array($txt['karma'], 'enabled' => in_array('k', $context['admin_features'])),
  102. 'sig' => array($txt['signature_settings_short']),
  103. 'profile' => array($txt['custom_profile_shorttitle'], 'enabled' => in_array('cp', $context['admin_features'])),
  104. ),
  105. ),
  106. 'securitysettings' => array(
  107. 'label' => $txt['admin_security_moderation'],
  108. 'file' => 'ManageSettings.php',
  109. 'function' => 'ModifySecuritySettings',
  110. 'icon' => 'security.gif',
  111. 'subsections' => array(
  112. 'general' => array($txt['mods_cat_security_general']),
  113. 'spam' => array($txt['antispam_title']),
  114. 'moderation' => array($txt['moderation_settings_short'], 'enabled' => substr($modSettings['warning_settings'], 0, 1) == 1),
  115. ),
  116. ),
  117. 'languages' => array(
  118. 'label' => $txt['language_configuration'],
  119. 'file' => 'ManageLanguages.php',
  120. 'function' => 'ManageLanguages',
  121. 'icon' => 'languages.gif',
  122. 'subsections' => array(
  123. 'edit' => array($txt['language_edit']),
  124. 'add' => array($txt['language_add']),
  125. 'settings' => array($txt['language_settings']),
  126. ),
  127. ),
  128. 'serversettings' => array(
  129. 'label' => $txt['admin_server_settings'],
  130. 'file' => 'ManageServer.php',
  131. 'function' => 'ModifySettings',
  132. 'icon' => 'server.gif',
  133. 'subsections' => array(
  134. 'general' => array($txt['general_settings']),
  135. 'database' => array($txt['database_paths_settings']),
  136. 'cookie' => array($txt['cookies_sessions_settings']),
  137. 'cache' => array($txt['caching_settings']),
  138. 'loads' => array($txt['load_balancing_settings']),
  139. ),
  140. ),
  141. 'current_theme' => array(
  142. 'label' => $txt['theme_current_settings'],
  143. 'file' => 'Themes.php',
  144. 'function' => 'ThemesMain',
  145. 'custom_url' => $scripturl . '?action=admin;area=theme;sa=settings;th=' . $settings['theme_id'],
  146. 'icon' => 'current_theme.gif',
  147. ),
  148. 'theme' => array(
  149. 'label' => $txt['theme_admin'],
  150. 'file' => 'Themes.php',
  151. 'function' => 'ThemesMain',
  152. 'custom_url' => $scripturl . '?action=admin;area=theme;sa=admin',
  153. 'icon' => 'themes.gif',
  154. 'subsections' => array(
  155. 'admin' => array($txt['themeadmin_admin_title']),
  156. 'list' => array($txt['themeadmin_list_title']),
  157. 'reset' => array($txt['themeadmin_reset_title']),
  158. 'edit' => array($txt['themeadmin_edit_title']),
  159. ),
  160. ),
  161. 'modsettings' => array(
  162. 'label' => $txt['admin_modifications'],
  163. 'file' => 'ManageSettings.php',
  164. 'function' => 'ModifyModSettings',
  165. 'icon' => 'modifications.gif',
  166. 'subsections' => array(
  167. 'general' => array($txt['mods_cat_modifications_misc']),
  168. // Mod Authors for a "ADD AFTER" on this line. Ensure you end your change with a comma. For example:
  169. // 'shout' => array($txt['shout']),
  170. // Note the comma!! The setting with automatically appear with the first mod to be added.
  171. ),
  172. ),
  173. ),
  174. ),
  175. 'layout' => array(
  176. 'title' => $txt['layout_controls'],
  177. 'permission' => array('manage_boards', 'admin_forum', 'manage_smileys', 'manage_attachments', 'moderate_forum'),
  178. 'areas' => array(
  179. 'manageboards' => array(
  180. 'label' => $txt['admin_boards'],
  181. 'file' => 'ManageBoards.php',
  182. 'function' => 'ManageBoards',
  183. 'icon' => 'boards.gif',
  184. 'permission' => array('manage_boards'),
  185. 'subsections' => array(
  186. 'main' => array($txt['boardsEdit']),
  187. 'newcat' => array($txt['mboards_new_cat']),
  188. 'settings' => array($txt['settings'], 'admin_forum'),
  189. ),
  190. ),
  191. 'postsettings' => array(
  192. 'label' => $txt['manageposts'],
  193. 'file' => 'ManagePosts.php',
  194. 'function' => 'ManagePostSettings',
  195. 'permission' => array('admin_forum'),
  196. 'icon' => 'posts.gif',
  197. 'subsections' => array(
  198. 'posts' => array($txt['manageposts_settings']),
  199. 'bbc' => array($txt['manageposts_bbc_settings']),
  200. 'censor' => array($txt['admin_censored_words']),
  201. 'topics' => array($txt['manageposts_topic_settings']),
  202. ),
  203. ),
  204. 'managecalendar' => array(
  205. 'label' => $txt['manage_calendar'],
  206. 'file' => 'ManageCalendar.php',
  207. 'function' => 'ManageCalendar',
  208. 'icon' => 'calendar.gif',
  209. 'permission' => array('admin_forum'),
  210. 'enabled' => in_array('cd', $context['admin_features']),
  211. 'subsections' => array(
  212. 'holidays' => array($txt['manage_holidays'], 'admin_forum', 'enabled' => !empty($modSettings['cal_enabled'])),
  213. 'settings' => array($txt['calendar_settings'], 'admin_forum'),
  214. ),
  215. ),
  216. 'managesearch' => array(
  217. 'label' => $txt['manage_search'],
  218. 'file' => 'ManageSearch.php',
  219. 'function' => 'ManageSearch',
  220. 'icon' => 'search.gif',
  221. 'permission' => array('admin_forum'),
  222. 'subsections' => array(
  223. 'weights' => array($txt['search_weights']),
  224. 'method' => array($txt['search_method']),
  225. 'settings' => array($txt['settings']),
  226. ),
  227. ),
  228. 'smileys' => array(
  229. 'label' => $txt['smileys_manage'],
  230. 'file' => 'ManageSmileys.php',
  231. 'function' => 'ManageSmileys',
  232. 'icon' => 'smiley.gif',
  233. 'permission' => array('manage_smileys'),
  234. 'subsections' => array(
  235. 'editsets' => array($txt['smiley_sets']),
  236. 'addsmiley' => array($txt['smileys_add'], 'enabled' => !empty($modSettings['smiley_enable'])),
  237. 'editsmileys' => array($txt['smileys_edit'], 'enabled' => !empty($modSettings['smiley_enable'])),
  238. 'setorder' => array($txt['smileys_set_order'], 'enabled' => !empty($modSettings['smiley_enable'])),
  239. 'editicons' => array($txt['icons_edit_message_icons'], 'enabled' => !empty($modSettings['messageIcons_enable'])),
  240. 'settings' => array($txt['settings']),
  241. ),
  242. ),
  243. 'manageattachments' => array(
  244. 'label' => $txt['attachments_avatars'],
  245. 'file' => 'ManageAttachments.php',
  246. 'function' => 'ManageAttachments',
  247. 'icon' => 'attachment.gif',
  248. 'permission' => array('manage_attachments'),
  249. 'subsections' => array(
  250. 'browse' => array($txt['attachment_manager_browse']),
  251. 'attachments' => array($txt['attachment_manager_settings']),
  252. 'avatars' => array($txt['attachment_manager_avatar_settings']),
  253. 'maintenance' => array($txt['attachment_manager_maintenance']),
  254. ),
  255. ),
  256. ),
  257. ),
  258. 'members' => array(
  259. 'title' => $txt['admin_manage_members'],
  260. 'permission' => array('moderate_forum', 'manage_membergroups', 'manage_bans', 'manage_permissions', 'admin_forum'),
  261. 'areas' => array(
  262. 'viewmembers' => array(
  263. 'label' => $txt['admin_users'],
  264. 'file' => 'ManageMembers.php',
  265. 'function' => 'ViewMembers',
  266. 'icon' => 'members.gif',
  267. 'permission' => array('moderate_forum'),
  268. 'subsections' => array(
  269. 'all' => array($txt['view_all_members']),
  270. 'search' => array($txt['mlist_search']),
  271. ),
  272. ),
  273. 'membergroups' => array(
  274. 'label' => $txt['admin_groups'],
  275. 'file' => 'ManageMembergroups.php',
  276. 'function' => 'ModifyMembergroups',
  277. 'icon' => 'membergroups.gif',
  278. 'permission' => array('manage_membergroups'),
  279. 'subsections' => array(
  280. 'index' => array($txt['membergroups_edit_groups'], 'manage_membergroups'),
  281. 'add' => array($txt['membergroups_new_group'], 'manage_membergroups'),
  282. 'settings' => array($txt['settings'], 'admin_forum'),
  283. ),
  284. ),
  285. 'permissions' => array(
  286. 'label' => $txt['edit_permissions'],
  287. 'file' => 'ManagePermissions.php',
  288. 'function' => 'ModifyPermissions',
  289. 'icon' => 'permissions.gif',
  290. 'permission' => array('manage_permissions'),
  291. 'subsections' => array(
  292. 'index' => array($txt['permissions_groups'], 'manage_permissions'),
  293. 'board' => array($txt['permissions_boards'], 'manage_permissions'),
  294. 'profiles' => array($txt['permissions_profiles'], 'manage_permissions'),
  295. 'postmod' => array($txt['permissions_post_moderation'], 'manage_permissions', 'enabled' => $modSettings['postmod_active']),
  296. 'settings' => array($txt['settings'], 'admin_forum'),
  297. ),
  298. ),
  299. 'regcenter' => array(
  300. 'label' => $txt['registration_center'],
  301. 'file' => 'ManageRegistration.php',
  302. 'function' => 'RegCenter',
  303. 'icon' => 'regcenter.gif',
  304. 'permission' => array('admin_forum', 'moderate_forum'),
  305. 'subsections' => array(
  306. 'register' => array($txt['admin_browse_register_new'], 'moderate_forum'),
  307. 'agreement' => array($txt['registration_agreement'], 'admin_forum'),
  308. 'reservednames' => array($txt['admin_reserved_set'], 'admin_forum'),
  309. 'settings' => array($txt['settings'], 'admin_forum'),
  310. ),
  311. ),
  312. 'ban' => array(
  313. 'label' => $txt['ban_title'],
  314. 'file' => 'ManageBans.php',
  315. 'function' => 'Ban',
  316. 'icon' => 'ban.gif',
  317. 'permission' => 'manage_bans',
  318. 'subsections' => array(
  319. 'list' => array($txt['ban_edit_list']),
  320. 'add' => array($txt['ban_add_new']),
  321. 'browse' => array($txt['ban_trigger_browse']),
  322. 'log' => array($txt['ban_log']),
  323. ),
  324. ),
  325. 'paidsubscribe' => array(
  326. 'label' => $txt['paid_subscriptions'],
  327. 'enabled' => in_array('ps', $context['admin_features']),
  328. 'file' => 'ManagePaid.php',
  329. 'icon' => 'paid.gif',
  330. 'function' => 'ManagePaidSubscriptions',
  331. 'permission' => 'admin_forum',
  332. 'subsections' => array(
  333. 'view' => array($txt['paid_subs_view']),
  334. 'settings' => array($txt['settings']),
  335. ),
  336. ),
  337. 'sengines' => array(
  338. 'label' => $txt['search_engines'],
  339. 'enabled' => in_array('sp', $context['admin_features']),
  340. 'file' => 'ManageSearchEngines.php',
  341. 'icon' => 'engines.gif',
  342. 'function' => 'SearchEngines',
  343. 'permission' => 'admin_forum',
  344. 'subsections' => array(
  345. 'stats' => array($txt['spider_stats']),
  346. 'logs' => array($txt['spider_logs']),
  347. 'spiders' => array($txt['spiders']),
  348. 'settings' => array($txt['settings']),
  349. ),
  350. ),
  351. ),
  352. ),
  353. 'maintenance' => array(
  354. 'title' => $txt['admin_maintenance'],
  355. 'permission' => array('admin_forum'),
  356. 'areas' => array(
  357. 'maintain' => array(
  358. 'label' => $txt['maintain_title'],
  359. 'file' => 'ManageMaintenance.php',
  360. 'icon' => 'maintain.gif',
  361. 'function' => 'ManageMaintenance',
  362. 'subsections' => array(
  363. 'routine' => array($txt['maintain_sub_routine'], 'admin_forum'),
  364. 'database' => array($txt['maintain_sub_database'], 'admin_forum'),
  365. 'members' => array($txt['maintain_sub_members'], 'admin_forum'),
  366. 'topics' => array($txt['maintain_sub_topics'], 'admin_forum'),
  367. ),
  368. ),
  369. 'scheduledtasks' => array(
  370. 'label' => $txt['maintain_tasks'],
  371. 'file' => 'ManageScheduledTasks.php',
  372. 'icon' => 'scheduled.gif',
  373. 'function' => 'ManageScheduledTasks',
  374. 'subsections' => array(
  375. 'tasks' => array($txt['maintain_tasks'], 'admin_forum'),
  376. 'tasklog' => array($txt['scheduled_log'], 'admin_forum'),
  377. ),
  378. ),
  379. 'mailqueue' => array(
  380. 'label' => $txt['mailqueue_title'],
  381. 'file' => 'ManageMail.php',
  382. 'function' => 'ManageMail',
  383. 'icon' => 'mail.gif',
  384. 'subsections' => array(
  385. 'browse' => array($txt['mailqueue_browse'], 'admin_forum'),
  386. 'settings' => array($txt['mailqueue_settings'], 'admin_forum'),
  387. ),
  388. ),
  389. 'reports' => array(
  390. 'enabled' => in_array('rg', $context['admin_features']),
  391. 'label' => $txt['generate_reports'],
  392. 'file' => 'Reports.php',
  393. 'function' => 'ReportsMain',
  394. 'icon' => 'reports.gif',
  395. ),
  396. 'logs' => array(
  397. 'label' => $txt['logs'],
  398. 'function' => 'AdminLogs',
  399. 'icon' => 'logs.gif',
  400. 'subsections' => array(
  401. 'errorlog' => array($txt['errlog'], 'admin_forum', 'enabled' => !empty($modSettings['enableErrorLogging']), 'url' => $scripturl . '?action=admin;area=logs;sa=errorlog;desc'),
  402. 'adminlog' => array($txt['admin_log'], 'admin_forum', 'enabled' => in_array('ml', $context['admin_features'])),
  403. 'modlog' => array($txt['moderation_log'], 'admin_forum', 'enabled' => in_array('ml', $context['admin_features'])),
  404. 'banlog' => array($txt['ban_log'], 'manage_bans'),
  405. 'spiderlog' => array($txt['spider_logs'], 'admin_forum', 'enabled' => in_array('sp', $context['admin_features'])),
  406. 'tasklog' => array($txt['scheduled_log'], 'admin_forum'),
  407. 'pruning' => array($txt['pruning_title'], 'admin_forum'),
  408. ),
  409. ),
  410. 'repairboards' => array(
  411. 'label' => $txt['admin_repair'],
  412. 'file' => 'RepairBoards.php',
  413. 'function' => 'RepairBoards',
  414. 'select' => 'maintain',
  415. 'hidden' => true,
  416. ),
  417. ),
  418. ),
  419. );
  420. // Any files to include for administration?
  421. if (!empty($modSettings['integrate_admin_include']))
  422. {
  423. $admin_includes = explode(',', $modSettings['integrate_admin_include']);
  424. foreach ($admin_includes as $include)
  425. {
  426. $include = strtr(trim($include), array('$boarddir' => $boarddir, '$sourcedir' => $sourcedir, '$themedir' => $settings['theme_dir']));
  427. if (file_exists($include))
  428. require_once($include);
  429. }
  430. }
  431. // Let them modify admin areas easily.
  432. call_integration_hook('integrate_admin_areas', array(&$admin_areas));
  433. // Make sure the administrator has a valid session...
  434. validateSession();
  435. // Actually create the menu!
  436. $admin_include_data = createMenu($admin_areas);
  437. unset($admin_areas);
  438. // Nothing valid?
  439. if ($admin_include_data == false)
  440. fatal_lang_error('no_access', false);
  441. // Build the link tree.
  442. $context['linktree'][] = array(
  443. 'url' => $scripturl . '?action=admin',
  444. 'name' => $txt['admin_center'],
  445. );
  446. if (isset($admin_include_data['current_area']) && $admin_include_data['current_area'] != 'index')
  447. $context['linktree'][] = array(
  448. 'url' => $scripturl . '?action=admin;area=' . $admin_include_data['current_area'] . ';' . $context['session_var'] . '=' . $context['session_id'],
  449. 'name' => $admin_include_data['label'],
  450. );
  451. if (!empty($admin_include_data['current_subsection']) && $admin_include_data['subsections'][$admin_include_data['current_subsection']][0] != $admin_include_data['label'])
  452. $context['linktree'][] = array(
  453. 'url' => $scripturl . '?action=admin;area=' . $admin_include_data['current_area'] . ';sa=' . $admin_include_data['current_subsection'] . ';' . $context['session_var'] . '=' . $context['session_id'],
  454. 'name' => $admin_include_data['subsections'][$admin_include_data['current_subsection']][0],
  455. );
  456. // Make a note of the Unique ID for this menu.
  457. $context['admin_menu_id'] = $context['max_menu_id'];
  458. $context['admin_menu_name'] = 'menu_data_' . $context['admin_menu_id'];
  459. // Why on the admin are we?
  460. $context['admin_area'] = $admin_include_data['current_area'];
  461. // Now - finally - call the right place!
  462. if (isset($admin_include_data['file']))
  463. require_once($sourcedir . '/' . $admin_include_data['file']);
  464. $admin_include_data['function']();
  465. }
  466. /**
  467. * The main administration section.
  468. * It prepares all the data necessary for the administration front page.
  469. * It uses the Admin template along with the admin sub template.
  470. * It requires the moderate_forum, manage_membergroups, manage_bans,
  471. * admin_forum, manage_permissions, manage_attachments, manage_smileys,
  472. * manage_boards, edit_news, or send_mail permission.
  473. * It uses the index administrative area.
  474. * It can be found by going to ?action=admin.
  475. */
  476. function AdminHome()
  477. {
  478. global $sourcedir, $forum_version, $txt, $scripturl, $context, $user_info, $boardurl, $modSettings, $smcFunc;
  479. // You have to be able to do at least one of the below to see this page.
  480. isAllowedTo(array('admin_forum', 'manage_permissions', 'moderate_forum', 'manage_membergroups', 'manage_bans', 'send_mail', 'edit_news', 'manage_boards', 'manage_smileys', 'manage_attachments'));
  481. // Find all of this forum's administrators...
  482. require_once($sourcedir . '/Subs-Membergroups.php');
  483. if (listMembergroupMembers_Href($context['administrators'], 1, 32) && allowedTo('manage_membergroups'))
  484. {
  485. // Add a 'more'-link if there are more than 32.
  486. $context['more_admins_link'] = '<a href="' . $scripturl . '?action=moderate;area=viewgroups;sa=members;group=1">' . $txt['more'] . '</a>';
  487. }
  488. // Load the credits stuff.
  489. require_once($sourcedir . '/Who.php');
  490. Credits(true);
  491. // This makes it easier to get the latest news with your time format.
  492. $context['time_format'] = urlencode($user_info['time_format']);
  493. $context['current_versions'] = array(
  494. 'php' => array('title' => $txt['support_versions_php'], 'version' => PHP_VERSION),
  495. 'db' => array('title' => sprintf($txt['support_versions_db'], $smcFunc['db_title']), 'version' => ''),
  496. 'server' => array('title' => $txt['support_versions_server'], 'version' => $_SERVER['SERVER_SOFTWARE']),
  497. );
  498. $context['forum_version'] = $forum_version;
  499. // Get a list of current server versions.
  500. require_once($sourcedir . '/Subs-Admin.php');
  501. $checkFor = array(
  502. 'gd',
  503. 'db_server',
  504. 'mmcache',
  505. 'eaccelerator',
  506. 'phpa',
  507. 'apc',
  508. 'memcache',
  509. 'xcache',
  510. 'php',
  511. 'server',
  512. );
  513. $context['current_versions'] = getServerVersions($checkFor);
  514. $context['can_admin'] = allowedTo('admin_forum');
  515. $context['sub_template'] = $context['admin_area'] == 'credits' ? 'credits' : 'admin';
  516. $context['page_title'] = $context['admin_area'] == 'credits' ? $txt['support_credits_title'] : $txt['admin_center'];
  517. // The format of this array is: permission, action, title, description, icon.
  518. $quick_admin_tasks = array(
  519. array('', 'credits', 'support_credits_title', 'support_credits_info', 'support_and_credits.png'),
  520. array('admin_forum', 'featuresettings', 'modSettings_title', 'modSettings_info', 'features_and_options.png'),
  521. array('admin_forum', 'maintain', 'maintain_title', 'maintain_info', 'forum_maintenance.png'),
  522. array('manage_permissions', 'permissions', 'edit_permissions', 'edit_permissions_info', 'permissions.png'),
  523. array('admin_forum', 'theme;sa=admin;' . $context['session_var'] . '=' . $context['session_id'], 'theme_admin', 'theme_admin_info', 'themes_and_layout.png'),
  524. array('admin_forum', 'packages', 'package', 'package_info', 'packages.png'),
  525. array('manage_smileys', 'smileys', 'smileys_manage', 'smileys_manage_info', 'smilies_and_messageicons.png'),
  526. array('moderate_forum', 'viewmembers', 'admin_users', 'member_center_info', 'members.png'),
  527. );
  528. $context['quick_admin_tasks'] = array();
  529. foreach ($quick_admin_tasks as $task)
  530. {
  531. if (!empty($task[0]) && !allowedTo($task[0]))
  532. continue;
  533. $context['quick_admin_tasks'][] = array(
  534. 'href' => $scripturl . '?action=admin;area=' . $task[1],
  535. 'link' => '<a href="' . $scripturl . '?action=admin;area=' . $task[1] . '">' . $txt[$task[2]] . '</a>',
  536. 'title' => $txt[$task[2]],
  537. 'description' => $txt[$task[3]],
  538. 'icon' => $task[4],
  539. 'is_last' => false
  540. );
  541. }
  542. if (count($context['quick_admin_tasks']) % 2 == 1)
  543. {
  544. $context['quick_admin_tasks'][] = array(
  545. 'href' => '',
  546. 'link' => '',
  547. 'title' => '',
  548. 'description' => '',
  549. 'is_last' => true
  550. );
  551. $context['quick_admin_tasks'][count($context['quick_admin_tasks']) - 2]['is_last'] = true;
  552. }
  553. elseif (count($context['quick_admin_tasks']) != 0)
  554. {
  555. $context['quick_admin_tasks'][count($context['quick_admin_tasks']) - 1]['is_last'] = true;
  556. $context['quick_admin_tasks'][count($context['quick_admin_tasks']) - 2]['is_last'] = true;
  557. }
  558. // Lastly, fill in the blanks in the support resources paragraphs.
  559. $txt['support_resources_p1'] = sprintf($txt['support_resources_p1'],
  560. 'http://wiki.simplemachines.org/',
  561. 'http://wiki.simplemachines.org/smf/features2',
  562. 'http://wiki.simplemachines.org/smf/options2',
  563. 'http://wiki.simplemachines.org/smf/themes2',
  564. 'http://wiki.simplemachines.org/smf/packages2'
  565. );
  566. $txt['support_resources_p2'] = sprintf($txt['support_resources_p2'],
  567. 'http://www.simplemachines.org/community/',
  568. 'http://www.simplemachines.org/redirect/english_support',
  569. 'http://www.simplemachines.org/redirect/international_support_boards',
  570. 'http://www.simplemachines.org/redirect/smf_support',
  571. 'http://www.simplemachines.org/redirect/customize_support'
  572. );
  573. }
  574. /**
  575. * Get one of the admin information files from Simple Machines.
  576. */
  577. function DisplayAdminFile()
  578. {
  579. global $context, $modSettings, $smcFunc;
  580. @ini_set('memory_limit', '32M');
  581. if (empty($_REQUEST['filename']) || !is_string($_REQUEST['filename']))
  582. fatal_lang_error('no_access', false);
  583. $request = $smcFunc['db_query']('', '
  584. SELECT data, filetype
  585. FROM {db_prefix}admin_info_files
  586. WHERE filename = {string:current_filename}
  587. LIMIT 1',
  588. array(
  589. 'current_filename' => $_REQUEST['filename'],
  590. )
  591. );
  592. if ($smcFunc['db_num_rows']($request) == 0)
  593. fatal_lang_error('admin_file_not_found', true, array($_REQUEST['filename']));
  594. list ($file_data, $filetype) = $smcFunc['db_fetch_row']($request);
  595. $smcFunc['db_free_result']($request);
  596. // !!! Temp.
  597. // Figure out if sesc is still being used.
  598. if (strpos($file_data, ';sesc=') !== false)
  599. $file_data = '
  600. if (!(\'smfForum_sessionvar\' in window))
  601. window.smfForum_sessionvar = \'sesc\';
  602. ' . strtr($file_data, array(';sesc=' => ';\' + window.smfForum_sessionvar + \'='));
  603. $context['template_layers'] = array();
  604. // Lets make sure we aren't going to output anything nasty.
  605. @ob_end_clean();
  606. if (!empty($modSettings['enableCompressedOutput']))
  607. @ob_start('ob_gzhandler');
  608. else
  609. @ob_start();
  610. // Make sure they know what type of file we are.
  611. header('Content-Type: ' . $filetype);
  612. echo $file_data;
  613. obExit(false);
  614. }
  615. /**
  616. * This function allocates out all the search stuff.
  617. */
  618. function AdminSearch()
  619. {
  620. global $txt, $context, $smcFunc, $sourcedir;
  621. isAllowedTo('admin_forum');
  622. // What can we search for?
  623. $subactions = array(
  624. 'internal' => 'AdminSearchInternal',
  625. 'online' => 'AdminSearchOM',
  626. 'member' => 'AdminSearchMember',
  627. );
  628. $context['search_type'] = !isset($_REQUEST['search_type']) || !isset($subactions[$_REQUEST['search_type']]) ? 'internal' : $_REQUEST['search_type'];
  629. $context['search_term'] = isset($_REQUEST['search_term']) ? $smcFunc['htmlspecialchars']($_REQUEST['search_term'], ENT_QUOTES) : '';
  630. $context['sub_template'] = 'admin_search_results';
  631. $context['page_title'] = $txt['admin_search_results'];
  632. // Keep track of what the admin wants.
  633. if (empty($context['admin_preferences']['sb']) || $context['admin_preferences']['sb'] != $context['search_type'])
  634. {
  635. $context['admin_preferences']['sb'] = $context['search_type'];
  636. // Update the preferences.
  637. require_once($sourcedir . '/Subs-Admin.php');
  638. updateAdminPreferences();
  639. }
  640. if (trim($context['search_term']) == '')
  641. $context['search_results'] = array();
  642. else
  643. $subactions[$context['search_type']]();
  644. }
  645. /**
  646. * A complicated but relatively quick internal search.
  647. */
  648. function AdminSearchInternal()
  649. {
  650. global $context, $txt, $helptxt, $scripturl, $sourcedir;
  651. // Try to get some more memory.
  652. @ini_set('memory_limit', '128M');
  653. // Load a lot of language files.
  654. $language_files = array(
  655. 'Help', 'ManageMail', 'ManageSettings', 'ManageCalendar', 'ManageBoards', 'ManagePaid', 'ManagePermissions', 'Search',
  656. 'Login', 'ManageSmileys',
  657. );
  658. loadLanguage(implode('+', $language_files));
  659. // All the files we need to include.
  660. $include_files = array(
  661. 'ManageSettings', 'ManageBoards', 'ManageNews', 'ManageAttachments', 'ManageCalendar', 'ManageMail', 'ManagePaid', 'ManagePermissions',
  662. 'ManagePosts', 'ManageRegistration', 'ManageSearch', 'ManageSearchEngines', 'ManageServer', 'ManageSmileys',
  663. );
  664. foreach ($include_files as $file)
  665. require_once($sourcedir . '/' . $file . '.php');
  666. /* This is the huge array that defines everything... it's a huge array of items formatted as follows:
  667. 0 = Language index (Can be array of indexes) to search through for this setting.
  668. 1 = URL for this indexes page.
  669. 2 = Help index for help associated with this item (If different from 0)
  670. */
  671. $search_data = array(
  672. // All the major sections of the forum.
  673. 'sections' => array(
  674. ),
  675. 'settings' => array(
  676. array('COPPA', 'area=regcenter;sa=settings'),
  677. array('CAPTCHA', 'area=securitysettings;sa=spam'),
  678. ),
  679. );
  680. // Go through the admin menu structure trying to find suitably named areas!
  681. foreach ($context[$context['admin_menu_name']]['sections'] as $section)
  682. {
  683. foreach ($section['areas'] as $menu_key => $menu_item)
  684. {
  685. $search_data['sections'][] = array($menu_item['label'], 'area=' . $menu_key);
  686. if (!empty($menu_item['subsections']))
  687. foreach ($menu_item['subsections'] as $key => $sublabel)
  688. {
  689. if (isset($sublabel['label']))
  690. $search_data['sections'][] = array($sublabel['label'], 'area=' . $menu_key . ';sa=' . $key);
  691. }
  692. }
  693. }
  694. // This is a special array of functions that contain setting data - we query all these to simply pull all setting bits!
  695. $settings_search = array(
  696. array('ModifyCoreFeatures', 'area=corefeatures'),
  697. array('ModifyBasicSettings', 'area=featuresettings;sa=basic'),
  698. array('ModifyLayoutSettings', 'area=featuresettings;sa=layout'),
  699. array('ModifyKarmaSettings', 'area=featuresettings;sa=karma'),
  700. array('ModifySignatureSettings', 'area=featuresettings;sa=sig'),
  701. array('ModifyGeneralSecuritySettings', 'area=securitysettings;sa=general'),
  702. array('ModifySpamSettings', 'area=securitysettings;sa=spam'),
  703. array('ModifyModerationSettings', 'area=securitysettings;sa=moderation'),
  704. array('ModifyGeneralModSettings', 'area=modsettings;sa=general'),
  705. // Mod authors if you want to be "real freaking good" then add any setting pages for your mod BELOW this line!
  706. array('ManageAttachmentSettings', 'area=manageattachments;sa=attachments'),
  707. array('ManageAvatarSettings', 'area=manageattachments;sa=avatars'),
  708. array('ModifyCalendarSettings', 'area=managecalendar;sa=settings'),
  709. array('EditBoardSettings', 'area=manageboards;sa=settings'),
  710. array('ModifyMailSettings', 'area=mailqueue;sa=settings'),
  711. array('ModifyNewsSettings', 'area=news;sa=settings'),
  712. array('GeneralPermissionSettings', 'area=permissions;sa=settings'),
  713. array('ModifyPostSettings', 'area=postsettings;sa=posts'),
  714. array('ModifyBBCSettings', 'area=postsettings;sa=bbc'),
  715. array('ModifyTopicSettings', 'area=postsettings;sa=topics'),
  716. array('EditSearchSettings', 'area=managesearch;sa=settings'),
  717. array('EditSmileySettings', 'area=smileys;sa=settings'),
  718. array('ModifyGeneralSettings', 'area=serversettings;sa=general'),
  719. array('ModifyDatabaseSettings', 'area=serversettings;sa=database'),
  720. array('ModifyCookieSettings', 'area=serversettings;sa=cookie'),
  721. array('ModifyCacheSettings', 'area=serversettings;sa=cache'),
  722. array('ModifyLanguageSettings', 'area=languages;sa=settings'),
  723. array('ModifyRegistrationSettings', 'area=regcenter;sa=settings'),
  724. array('ManageSearchEngineSettings', 'area=sengines;sa=settings'),
  725. array('ModifySubscriptionSettings', 'area=paidsubscribe;sa=settings'),
  726. array('ModifyPruningSettings', 'area=logs;sa=pruning'),
  727. );
  728. foreach ($settings_search as $setting_area)
  729. {
  730. // Get a list of their variables.
  731. $config_vars = $setting_area[0](true);
  732. foreach ($config_vars as $var)
  733. if (!empty($var[1]) && !in_array($var[0], array('permissions', 'switch')))
  734. $search_data['settings'][] = array($var[(isset($var[2]) && in_array($var[2], array('file', 'db'))) ? 0 : 1], $setting_area[1]);
  735. }
  736. $context['page_title'] = $txt['admin_search_results'];
  737. $context['search_results'] = array();
  738. $search_term = strtolower($context['search_term']);
  739. // Go through all the search data trying to find this text!
  740. foreach ($search_data as $section => $data)
  741. {
  742. foreach ($data as $item)
  743. {
  744. $found = false;
  745. if (!is_array($item[0]))
  746. $item[0] = array($item[0]);
  747. foreach ($item[0] as $term)
  748. {
  749. $lc_term = strtolower($term);
  750. if (strpos($lc_term, $search_term) !== false || (isset($txt[$term]) && strpos(strtolower($txt[$term]), $search_term) !== false) || (isset($txt['setting_' . $term]) && strpos(strtolower($txt['setting_' . $term]), $search_term) !== false))
  751. {
  752. $found = $term;
  753. break;
  754. }
  755. }
  756. if ($found)
  757. {
  758. // Format the name - and remove any descriptions the entry may have.
  759. $name = isset($txt[$found]) ? $txt[$found] : (isset($txt['setting_' . $found]) ? $txt['setting_' . $found] : $found);
  760. $name = preg_replace('~<(?:div|span)\sclass="smalltext">.+?</(?:div|span)>~', '', $name);
  761. $context['search_results'][] = array(
  762. 'url' => (substr($item[1], 0, 4) == 'area' ? $scripturl . '?action=admin;' . $item[1] : $item[1]) . ';' . $context['session_var'] . '=' . $context['session_id'] . ((substr($item[1], 0, 4) == 'area' && $section == 'settings' ? '#' . $item[0][0] : '')),
  763. 'name' => $name,
  764. 'type' => $section,
  765. 'help' => shorten_subject(isset($item[2]) ? strip_tags($helptxt[$item2]) : (isset($helptxt[$found]) ? strip_tags($helptxt[$found]) : ''), 255),
  766. );
  767. }
  768. }
  769. }
  770. }
  771. /**
  772. * All this does is pass through to manage members.
  773. */
  774. function AdminSearchMember()
  775. {
  776. global $context, $sourcedir;
  777. require_once($sourcedir . '/ManageMembers.php');
  778. $_REQUEST['sa'] = 'query';
  779. $_POST['membername'] = $context['search_term'];
  780. ViewMembers();
  781. }
  782. /**
  783. * This file allows the user to search the SM online manual for a little of help.
  784. */
  785. function AdminSearchOM()
  786. {
  787. global $context, $sourcedir;
  788. $docsURL = 'docs.simplemachines.org';
  789. $context['doc_scripturl'] = 'http://docs.simplemachines.org/index.php';
  790. // Set all the parameters search might expect.
  791. $postVars = array(
  792. 'search' => $context['search_term'],
  793. );
  794. // Encode the search data.
  795. foreach ($postVars as $k => $v)
  796. $postVars[$k] = urlencode($k) . '=' . urlencode($v);
  797. // This is what we will send.
  798. $postVars = implode('&', $postVars);
  799. // Get the results from the doc site.
  800. require_once($sourcedir . '/Subs-Package.php');
  801. $search_results = fetch_web_data($context['doc_scripturl'] . '?action=search2&xml', $postVars);
  802. // If we didn't get any xml back we are in trouble - perhaps the doc site is overloaded?
  803. if (!$search_results || preg_match('~<' . '\?xml\sversion="\d+\.\d+"\sencoding=".+?"\?' . '>\s*(<smf>.+?</smf>)~is', $search_results, $matches) != true)
  804. fatal_lang_error('cannot_connect_doc_site');
  805. $search_results = $matches[1];
  806. // Otherwise we simply walk through the XML and stick it in context for display.
  807. $context['search_results'] = array();
  808. loadClassFile('Class-Package.php');
  809. // Get the results loaded into an array for processing!
  810. $results = new xmlArray($search_results, false);
  811. // Move through the smf layer.
  812. if (!$results->exists('smf'))
  813. fatal_lang_error('cannot_connect_doc_site');
  814. $results = $results->path('smf[0]');
  815. // Are there actually some results?
  816. if (!$results->exists('noresults') && !$results->exists('results'))
  817. fatal_lang_error('cannot_connect_doc_site');
  818. elseif ($results->exists('results'))
  819. {
  820. foreach ($results->set('results/result') as $result)
  821. {
  822. if (!$result->exists('messages'))
  823. continue;
  824. $context['search_results'][$result->fetch('id')] = array(
  825. 'topic_id' => $result->fetch('id'),
  826. 'relevance' => $result->fetch('relevance'),
  827. 'board' => array(
  828. 'id' => $result->fetch('board/id'),
  829. 'name' => $result->fetch('board/name'),
  830. 'href' => $result->fetch('board/href'),
  831. ),
  832. 'category' => array(
  833. 'id' => $result->fetch('category/id'),
  834. 'name' => $result->fetch('category/name'),
  835. 'href' => $result->fetch('category/href'),
  836. ),
  837. 'messages' => array(),
  838. );
  839. // Add the messages.
  840. foreach ($result->set('messages/message') as $message)
  841. $context['search_results'][$result->fetch('id')]['messages'][] = array(
  842. 'id' => $message->fetch('id'),
  843. 'subject' => $message->fetch('subject'),
  844. 'body' => $message->fetch('body'),
  845. 'time' => $message->fetch('time'),
  846. 'timestamp' => $message->fetch('timestamp'),
  847. 'start' => $message->fetch('start'),
  848. 'author' => array(
  849. 'id' => $message->fetch('author/id'),
  850. 'name' => $message->fetch('author/name'),
  851. 'href' => $message->fetch('author/href'),
  852. ),
  853. );
  854. }
  855. }
  856. }
  857. /**
  858. * This function decides which log to load.
  859. */
  860. function AdminLogs()
  861. {
  862. global $sourcedir, $context, $txt, $scripturl;
  863. // These are the logs they can load.
  864. $log_functions = array(
  865. 'errorlog' => array('ManageErrors.php', 'ViewErrorLog'),
  866. 'adminlog' => array('Modlog.php', 'ViewModlog'),
  867. 'modlog' => array('Modlog.php', 'ViewModlog'),
  868. 'banlog' => array('ManageBans.php', 'BanLog'),
  869. 'spiderlog' => array('ManageSearchEngines.php', 'SpiderLogs'),
  870. 'tasklog' => array('ManageScheduledTasks.php', 'TaskLog'),
  871. 'pruning' => array('ManageSettings.php', 'ModifyPruningSettings'),
  872. );
  873. $sub_action = isset($_REQUEST['sa']) && isset($log_functions[$_REQUEST['sa']]) ? $_REQUEST['sa'] : 'errorlog';
  874. // If it's not got a sa set it must have come here for first time, pretend error log should be reversed.
  875. if (!isset($_REQUEST['sa']))
  876. $_REQUEST['desc'] = true;
  877. // Setup some tab stuff.
  878. $context[$context['admin_menu_name']]['tab_data'] = array(
  879. 'title' => $txt['logs'],
  880. 'help' => '',
  881. 'description' => $txt['maintain_info'],
  882. 'tabs' => array(
  883. 'errorlog' => array(
  884. 'url' => $scripturl . '?action=admin;area=logs;sa=errorlog;desc',
  885. 'description' => sprintf($txt['errlog_desc'], $txt['remove']),
  886. ),
  887. 'adminlog' => array(
  888. 'description' => $txt['admin_log_desc'],
  889. ),
  890. 'modlog' => array(
  891. 'description' => $txt['moderation_log_desc'],
  892. ),
  893. 'banlog' => array(
  894. 'description' => $txt['ban_log_description'],
  895. ),
  896. 'spiderlog' => array(
  897. 'description' => $txt['spider_log_desc'],
  898. ),
  899. 'tasklog' => array(
  900. 'description' => $txt['scheduled_log_desc'],
  901. ),
  902. 'pruning' => array(
  903. 'description' => $txt['pruning_log_desc'],
  904. ),
  905. ),
  906. );
  907. require_once($sourcedir . '/' . $log_functions[$sub_action][0]);
  908. $log_functions[$sub_action][1]();
  909. }
  910. ?>