phpDocumentor updates
[squirrelmail.git] / plugins / squirrelspell / sqspell_interface.php
CommitLineData
849bdf42 1<?php
4b4abf93 2
d112ed5a 3/**
4 * sqspell_interface.php
8d6a115b 5 *
d112ed5a 6 * Main wrapper for the pop-up.
7 *
d112ed5a 8 * This is a main wrapper for the pop-up window interface of
91e0dccc 9 * SquirrelSpell.
d112ed5a 10 *
4b4abf93 11 * @author Konstantin Riabitsev <icon at duke.edu>
12 * @copyright &copy; 1999-2005 The SquirrelMail Project Team
13 * @license http://opensource.org/licenses/gpl-license.php GNU Public License
7996c920 14 * @version $Id$
ea5f4b8e 15 * @package plugins
16 * @subpackage squirrelspell
d112ed5a 17 */
849bdf42 18
91e0dccc 19/**
d112ed5a 20 * Set up a couple of non-negotiable constants and
21 * defaults. Don't change these, * the setuppable stuff is in
22 * sqspell_config.php
23 */
8d6a115b 24$SQSPELL_DIR='plugins/squirrelspell/';
d112ed5a 25$SQSPELL_CRYPTO=FALSE;
91e0dccc 26
d112ed5a 27/**
598294a7 28 * Load the stuff needed from SquirrelMail
ea5f4b8e 29 * @ignore
d112ed5a 30 */
92219031 31define('SM_PATH','../../');
7e54b325 32
33/* SquirrelMail required files. */
34require_once(SM_PATH . 'include/validate.php');
7996c920 35include_once(SM_PATH . 'functions/display_messages.php');
7996c920 36include_once(SM_PATH . $SQSPELL_DIR . 'sqspell_functions.php');
91e0dccc 37
d112ed5a 38/**
39 * $MOD is the name of the module to invoke.
7996c920 40 * If $MOD is unspecified, assign "init" to it. Else check for
41 * security breach attempts.
d112ed5a 42 */
7996c920 43if(! sqgetGlobalVar('MOD',$MOD,SQ_FORM)) {
44 $MOD = 'init';
91e0dccc 45}
7996c920 46sqspell_ckMOD($MOD);
8a9f9d09 47
7996c920 48/* Load the stuff already. */
49if (file_exists(SM_PATH . $SQSPELL_DIR . "modules/$MOD.mod")) {
50 require_once(SM_PATH . $SQSPELL_DIR . "modules/$MOD.mod");
d112ed5a 51} else {
7996c920 52 error_box(_("Invalid SquirrelSpell module."),$color);
53 echo '</body></html>';
d112ed5a 54}
91e0dccc 55?>