6 * Main wrapper for the options interface.
8 * @author Konstantin Riabitsev <icon at duke.edu>
9 * @copyright 1999-2022 The SquirrelMail Project Team
10 * @license http://opensource.org/licenses/gpl-license.php GNU Public License
13 * @subpackage squirrelspell
17 * Include the SquirrelMail initialization file.
19 require('../../include/init.php');
22 * Set a couple of constants and defaults. Don't change these,
23 * the configurable stuff is in sqspell_config.php
24 * @todo do we really need $SQSPELL_DIR var?
26 $SQSPELL_DIR='plugins/squirrelspell/';
27 $SQSPELL_CRYPTO=FALSE;
31 include_once(SM_PATH
. $SQSPELL_DIR . 'sqspell_functions.php');
34 * $MOD is the name of the module to invoke.
35 * If $MOD is unspecified, assign "options_main" to it. Else check for
36 * security breach attempts.
38 if(! sqgetGlobalVar('MOD',$MOD,SQ_FORM
)) {
39 $MOD = 'options_main';
43 /* Load the stuff already. */
44 if (file_exists(SM_PATH
. $SQSPELL_DIR . "modules/$MOD.mod")) {
45 require_once(SM_PATH
. $SQSPELL_DIR . "modules/$MOD.mod");
47 error_box(_("Invalid SquirrelSpell module."));
48 // display footer (closes html tags)
49 $oTemplate->display('footer.tpl');