1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66
|
<?php
/**
* init.mod
* ---------
* Squirrelspell module
*
* Copyright (c) 1999-2002 The SquirrelMail development team
* Licensed under the GNU GPL. For full terms see the file COPYING.
*
* Initial loading of the popup window interface.
*
* $Id: init.mod,v 1.2 2002/01/31 03:00:55 graf25 Exp $
*
* @author Konstantin Riabitsev <icon@duke.edu> ($Author: graf25 $)
* @version $Date: 2002/01/31 03:00:55 $
*/
/**
* See if we need to give user the option of choosing which dictionary
* s/he wants to use to spellcheck his message.
*/
$langs=sqspell_getSettings(null);
$msg = '<form method="post">'
. '<input type="hidden" name="MOD" value="check_me">'
. '<input type="hidden" name="sqspell_text">'
. '<p align="center">';
if (sizeof($langs)==1){
/**
* Only one dictionary defined by the user. Submit the form
* automatically.
*/
$onload="sqspell_init(true)";
$msg .= _("Please wait, communicating with the server...")
. '</p>'
. "<input type=\"hidden\" name=\"sqspell_use_app\" value=\"$langs[0]\">";
} else {
/**
* More than one dictionary. Let the user choose the dictionary first
* then manually submit the form.
*/
$onload="sqspell_init(false)";
$msg .= _("Please choose which dictionary you would like to use to spellcheck this message:")
. '</p><p align="center">'
. '<select name="sqspell_use_app">';
for ($i=0; $i<sizeof($langs); $i++){
$msg .= "<option";
if (!$i) {
$msg .= ' selected';
}
$msg .= " value=\"$langs[$i]\"> " . _($langs[$i]) . "</option>\n";
}
$msg .= ' </select>'
. '<input type="submit" value="' . _("Go") . '">'
. '</p>';
}
$msg .="</form>\n";
sqspell_makeWindow($onload, _("SquirrelSpell Initiating"), "init.js", $msg);
/**
* For the Emacs weenies:
* Local variables:
* mode: php
* End:
*/
?>
|