'HelpIndex', ); // CRUD $subActions as needed. call_integration_hook('integrate_manage_help', array(&$subActions)); $sa = isset($_GET['sa'], $subActions[$_GET['sa']]) ? $_GET['sa'] : 'index'; call_helper($subActions[$sa]); } /** * The main page for the Help section */ function HelpIndex() { global $scripturl, $context, $txt; // We need to know where our wiki is. $context['wiki_url'] = 'https://wiki.simplemachines.org/smf'; $context['wiki_prefix'] = 'SMF2.1:'; $context['canonical_url'] = $scripturl . '?action=help'; // Sections were are going to link... $context['manual_sections'] = array( 'registering' => 'Registering', 'logging_in' => 'Logging_In', 'profile' => 'Profile', 'search' => 'Search', 'posting' => 'Posting', 'bbc' => 'Bulletin_board_code', 'personal_messages' => 'Personal_messages', 'memberlist' => 'Memberlist', 'calendar' => 'Calendar', 'features' => 'Features', ); // Build the link tree. $context['linktree'][] = array( 'url' => $scripturl . '?action=help', 'name' => $txt['help'], ); // Lastly, some minor template stuff. $context['page_title'] = $txt['manual_smf_user_help']; $context['sub_template'] = 'manual'; } /** * Show some of the more detailed help to give the admin an idea... * It shows a popup for administrative or user help. * It uses the help parameter to decide what string to display and where to get * the string from. ($helptxt or $txt?) * It is accessed via ?action=helpadmin;help=?. * * Uses ManagePermissions language file, if the help starts with permissionhelp. * @uses template_popup() with no layers. */ function ShowAdminHelp() { global $txt, $helptxt, $context, $scripturl, $boarddir, $boardurl; if (!isset($_GET['help']) || !is_string($_GET['help'])) fatal_lang_error('no_access', false); if (!isset($helptxt)) $helptxt = array(); // Load the admin help language file and template. loadLanguage('Help'); // Permission specific help? if (isset($_GET['help']) && substr($_GET['help'], 0, 14) == 'permissionhelp') loadLanguage('ManagePermissions'); loadTemplate('Help'); // Allow mods to load their own language file here call_integration_hook('integrate_helpadmin'); // What help string should be used? if (isset($helptxt[$_GET['help']])) $context['help_text'] = $helptxt[$_GET['help']]; elseif (isset($txt[$_GET['help']])) $context['help_text'] = $txt[$_GET['help']]; else fatal_lang_error('not_found', false, array(), 404); switch ($_GET['help']) { case 'cal_short_months': $context['help_text'] = sprintf($context['help_text'], $txt['months_short'][1], $txt['months_titles'][1]); break; case 'cal_short_days': $context['help_text'] = sprintf($context['help_text'], $txt['days_short'][1], $txt['days'][1]); break; case 'cron_is_real_cron': $context['help_text'] = sprintf($context['help_text'], allowedTo('admin_forum') ? $boarddir : '[' . $txt['hidden'] . ']', $boardurl); break; case 'queryless_urls': $context['help_text'] = sprintf($context['help_text'], (isset($_SERVER['SERVER_SOFTWARE']) && (strpos($_SERVER['SERVER_SOFTWARE'], 'Apache') !== false || strpos($_SERVER['SERVER_SOFTWARE'], 'lighttpd') !== false) ? $helptxt['queryless_urls_supported'] : $helptxt['queryless_urls_unsupported'])); break; } // Does this text contain a link that we should fill in? if (preg_match('~%([0-9]+\$)?s\?~', $context['help_text'], $match)) $context['help_text'] = sprintf($context['help_text'], $scripturl, $context['session_id'], $context['session_var']); // Set the page title to something relevant. $context['page_title'] = $context['forum_name'] . ' - ' . $txt['help']; // Don't show any template layers, just the popup sub template. $context['template_layers'] = array(); $context['sub_template'] = 'popup'; } ?>