Replacing deprecated HTML "center" element (second try).
[squirrelmail.git] / plugins / squirrelspell / sqspell_options.php
... / ...
CommitLineData
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 * Load some necessary stuff from SquirrelMail.
26 * @ignore
27 */
28define('SM_PATH','../../');
29
30/* SquirrelMail required files. */
31require_once(SM_PATH . 'include/validate.php');
32include_once(SM_PATH . 'functions/display_messages.php');
33include_once(SM_PATH . $SQSPELL_DIR . 'sqspell_functions.php');
34
35/**
36 * $MOD is the name of the module to invoke.
37 * If $MOD is unspecified, assign "options_main" to it. Else check for
38 * security breach attempts.
39 */
40if(! sqgetGlobalVar('MOD',$MOD,SQ_FORM)) {
41 $MOD = 'options_main';
42}
43sqspell_ckMOD($MOD);
44
45/* Load the stuff already. */
46if (file_exists(SM_PATH . $SQSPELL_DIR . "modules/$MOD.mod")) {
47 require_once(SM_PATH . $SQSPELL_DIR . "modules/$MOD.mod");
48} else {
49 error_box(_("Invalid SquirrelSpell module."),$color);
50 echo '</body></html>';
51}
52?>