handle DB.php load errors inside preference class and don't worry about
[squirrelmail.git] / plugins / squirrelspell / sqspell_options.php
1 <?php
2
3 /**
4 * sqspell_options.php
5 *
6 * Main wrapper for the options interface.
7 *
8 * @author Konstantin Riabitsev <icon at duke.edu>
9 * @copyright &copy; 1999-2006 The SquirrelMail Project Team
10 * @license http://opensource.org/licenses/gpl-license.php GNU Public License
11 * @version $Id$
12 * @package plugins
13 * @subpackage squirrelspell
14 */
15
16 /**
17 * Set a couple of constants and defaults. Don't change these,
18 * the configurable stuff is in sqspell_config.php
19 * @todo do we really need $SQSPELL_DIR var?
20 */
21 $SQSPELL_DIR='plugins/squirrelspell/';
22 $SQSPELL_CRYPTO=FALSE;
23
24
25 /**
26 * Include the SquirrelMail initialization file.
27 */
28 require('../../include/init.php');
29
30 include_once(SM_PATH . $SQSPELL_DIR . 'sqspell_functions.php');
31
32 /**
33 * $MOD is the name of the module to invoke.
34 * If $MOD is unspecified, assign "options_main" to it. Else check for
35 * security breach attempts.
36 */
37 if(! sqgetGlobalVar('MOD',$MOD,SQ_FORM)) {
38 $MOD = 'options_main';
39 }
40 sqspell_ckMOD($MOD);
41
42 /* Load the stuff already. */
43 if (file_exists(SM_PATH . $SQSPELL_DIR . "modules/$MOD.mod")) {
44 require_once(SM_PATH . $SQSPELL_DIR . "modules/$MOD.mod");
45 } else {
46 error_box(_("Invalid SquirrelSpell module."),$color);
47 echo '</body></html>';
48 }
49 ?>