X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=src%2Fhelp.php;h=4f75306fc1a4b1399ff72a055decba34164f8014;hb=7111b0daa5f74c1c96d3bcf87da7a05e4ba6e189;hp=dd475d61f7711dd73a39d22f8bb359ffcfb9e809;hpb=4b4abf93a9624311afef0c385023724ee46a2b60;p=squirrelmail.git diff --git a/src/help.php b/src/help.php index dd475d61..4f75306f 100644 --- a/src/help.php +++ b/src/help.php @@ -5,22 +5,16 @@ * * Displays help for the user * - * @copyright © 1999-2005 The SquirrelMail Project Team + * @copyright © 1999-2006 The SquirrelMail Project Team * @license http://opensource.org/licenses/gpl-license.php GNU Public License * @version $Id$ * @package squirrelmail */ /** - * Path for SquirrelMail required files. - * @ignore + * Include the SquirrelMail initialization file. */ -define('SM_PATH','../'); - -/* SquirrelMail required files. */ -require_once(SM_PATH . 'include/validate.php'); -require_once(SM_PATH . 'functions/global.php'); -require_once(SM_PATH . 'functions/display_messages.php'); +require('../include/init.php'); displayPageHeader($color, 'None' ); @@ -98,10 +92,9 @@ function get_info($doc, $pos) { /**************[ END HELP FUNCTIONS ]******************/ - echo html_tag( 'table', html_tag( 'tr', - html_tag( 'td','
' . _("Help") .'
', 'center', $color[0] ) + html_tag( 'td','
' . _("Help") .'
', 'center', $color[0] ) ) , 'center', '', 'width="95%" cellpadding="1" cellspacing="2" border="0"' ); @@ -118,13 +111,14 @@ if (!isset($squirrelmail_language)) { if (file_exists("../help/$squirrelmail_language")) { $user_language = $squirrelmail_language; } else if (file_exists('../help/en_US')) { - echo "
" - ._("The help has not been translated to the selected language. It will be displayed in English instead."); - echo '

'; + error_box(_("Help is not available in the selected language. It will be displayed in English instead.")); + echo '
'; $user_language = 'en_US'; } else { - error_box( _("Some or all of the help documents are not present!"), $color ); - exit; + error_box( _("Help is not available. Please contact your system administrator for assistance.")); + // display footer (closes html tags) and stop script execution + $oTemplate->display('footer.tpl'); + exit(); } @@ -150,24 +144,68 @@ if ( sqgetGlobalVar('chapter', $temp, SQ_GET) ) { } if ( $chapter == 0 || !isset( $helpdir[$chapter-1] ) ) { + // Initialise the needed variables. + $toc = array(); + + // Get the chapter numbers, title and decriptions. + for ($i=0, $cnt = count($helpdir); $i < $cnt; $i++) { + if (file_exists("../help/$user_language/$helpdir[$i]")) { + // First try the selected language. + $doc = file("../help/$user_language/$helpdir[$i]"); + $help_info = get_info($doc, 0); + $toc[] = array($i+1, $help_info[0], $help_info[2]); + } elseif (file_exists("../help/en_US/$helpdir[$i]")) { + // If the selected language can't be found, try English. + $doc = file("../help/en_US/$helpdir[$i]"); + $help_info = get_info($doc, 0); + $toc[] = array($i+1, $help_info[0], + _("This chapter is not available in the selected language. It will be displayed in English instead.") . + '
' . $help_info[2]); + } else { + // If English can't be found, the chapter went MIA. + $toc[] = array($i+1, _("This chapter is missing"), + sprintf(_("For some reason, chapter %s is not available."), $i+1)); + } + } + + // Write the TOC header echo html_tag( 'table', '', 'center', '', 'cellpadding="0" cellspacing="0" border="0"' ) . html_tag( 'tr' ) . html_tag( 'td' ) . - '
' . _("Table of Contents") . '

'; + '
' . _("Table of Contents") . '

'; echo html_tag( 'ol' ); - for ($i=0, $cnt = count($helpdir); $i < $cnt; $i++) { - $doc = file("../help/$user_language/$helpdir[$i]"); - $help_info = get_info($doc, 0); - echo '
  • ' . $help_info[0] . '' . - html_tag( 'ul', $help_info[2] ); + + // Write the TOC chapters. + for ($i=0, $cnt = count($toc); $i < $cnt; $i++) { + echo '
  • ' . + $toc[$i][1] . '' . html_tag( 'ul', $toc[$i][2] ); } + + // Provide hook for external help scripts. do_hook('help_chapter'); + + // Write the TOC footer. echo ''; } else { - $doc = file("../help/$user_language/" . $helpdir[$chapter-1]); - $help_info = get_info($doc, 0); - echo '
    '; + // Initialise the needed variables. + $display_chapter = TRUE; + + // Get the chapter. + if (file_exists("../help/$user_language/" . $helpdir[$chapter-1])) { + // First try the selected language. + $doc = file("../help/$user_language/" . $helpdir[$chapter-1]); + } elseif (file_exists("../help/en_US/" . $helpdir[$chapter-1])) { + // If the selected language can't be found, try English. + $doc = file("../help/en_US/" . $helpdir[$chapter-1]); + error_box(_("This chapter in not available in the selected language. It will be displayed in English instead.")); + echo '
    '; + } else { + // If English can't be found, the chapter went MIA. + $display_chapter = FALSE; + } + + // Write the chpater header. + echo '
    '; if ($chapter <= 1){ echo '' . _("Previous") . ' | '; @@ -182,27 +220,35 @@ if ( $chapter == 0 || !isset( $helpdir[$chapter-1] ) ) { echo ' | ' . _("Next") . ''; } - echo '

    '; + echo '

    '; - echo '' . $chapter . ' - ' . $help_info[0] - . '

    '; + // Write the chapter. + if ($display_chapter) { + // If there is a valid chapter, display it. + $help_info = get_info($doc, 0); + echo '' . $chapter . ' - ' . $help_info[0] + . '

    '; - if (isset($help_info[1]) && $help_info[1]) { - echo $help_info[1]; - } else { - echo html_tag( 'p', $help_info[2], 'left' ); - } + if (isset($help_info[1]) && $help_info[1]) { + echo $help_info[1]; + } else { + echo html_tag( 'p', $help_info[2], 'left' ); + } - $section = 0; - for ($n = $help_info[3], $cnt = count($doc); $n < $cnt; $n++) { - $section++; - $help_info = get_info($doc, $n); - echo "$chapter.$section - $help_info[0]" . - html_tag( 'ul', $help_info[1] ); - $n = $help_info[3]; - } + $section = 0; + for ($n = $help_info[3], $cnt = count($doc); $n < $cnt; $n++) { + $section++; + $help_info = get_info($doc, $n); + echo "$chapter.$section - $help_info[0]" . + html_tag( 'ul', $help_info[1] ); + $n = $help_info[3]; + } - echo '
    ' . _("Top") . '
    '; + echo '
    ' . _("Top") . '
    '; + } else { + // If the help file went MIA, display an error message. + error_box(sprintf(_("For some reason, chapter %s is not available."), $chapter)); + } } do_hook('help_bottom'); @@ -212,4 +258,7 @@ echo html_tag( 'tr', ); ?> - \ No newline at end of file + +display('footer.tpl'); +?> \ No newline at end of file