all widgets should be named.
[squirrelmail.git] / plugins / squirrelspell / sqspell_options.php
1 <?php
2 /**
3 * sqspell_options.php
4 *
5 * Main wrapper for the options interface.
6 *
7 * Copyright (c) 1999-2005 The SquirrelMail Project Team
8 * Licensed under the GNU GPL. For full terms see the file COPYING.
9 *
10 * $Id$
11 *
12 * @author Konstantin Riabitsev <icon@duke.edu> ($Author$)
13 * @version $Date$
14 * @package plugins
15 * @subpackage squirrelspell
16 */
17
18 /**
19 * Set a couple of constants and defaults. Don't change these,
20 * the configurable stuff is in sqspell_config.php
21 */
22 $SQSPELL_DIR='plugins/squirrelspell/';
23 $SQSPELL_CRYPTO=FALSE;
24
25 /**
26 * Load some necessary stuff from SquirrelMail.
27 * @ignore
28 */
29 define('SM_PATH','../../');
30
31 /* SquirrelMail required files. */
32 require_once(SM_PATH . 'include/validate.php');
33 require_once(SM_PATH . 'include/load_prefs.php');
34 require_once(SM_PATH . 'functions/strings.php');
35 require_once(SM_PATH . 'functions/page_header.php');
36 require_once(SM_PATH . $SQSPELL_DIR . 'sqspell_config.php');
37 require_once(SM_PATH . $SQSPELL_DIR . 'sqspell_functions.php');
38
39 /**
40 * $MOD is the name of the module to invoke.
41 * If $MOD is unspecified, assign "init" to it. Else check for
42 * security breach attempts.
43 */
44 if(isset($_POST['MOD'])) {
45 $MOD = $_POST['MOD'];
46 } elseif (isset($_GET['MOD'])) {
47 $MOD = $_GET['MOD'];
48 }
49
50 if(!isset($MOD) || !$MOD) {
51 $MOD = 'options_main';
52 } else {
53 sqspell_ckMOD($MOD);
54 }
55
56 /* Load the stuff already. */
57 require_once(SM_PATH . $SQSPELL_DIR . "modules/$MOD.mod");
58
59 ?>