squirrelmail-webmail  1.4.22
About: SquirrelMail is a standards-based webmail package with strong MIME support, address books, and folder manipulation (written in PHP4).
  Fossies Dox: squirrelmail-webmail-1.4.22.tar.gz  ("inofficial" and yet experimental doxygen-generated source code documentation)  

sqspell_options.php
Go to the documentation of this file.
1 <?php
20 define('SM_PATH','../../');
21 
22 /* SquirrelMail required files. */
23 require_once(SM_PATH . 'include/validate.php');
24 require_once(SM_PATH . 'include/load_prefs.php');
25 require_once(SM_PATH . 'functions/strings.php');
26 require_once(SM_PATH . 'functions/page_header.php');
27 
32 $SQSPELL_DIR='plugins/squirrelspell/';
34 
35 require_once(SM_PATH . $SQSPELL_DIR . 'sqspell_config.php');
36 require_once(SM_PATH . $SQSPELL_DIR . 'sqspell_functions.php');
37 
43 if(isset($_POST['MOD'])) {
44  $MOD = $_POST['MOD'];
45 } elseif (isset($_GET['MOD'])) {
46  $MOD = $_GET['MOD'];
47 }
48 
49 if(!isset($MOD) || !$MOD) {
50  $MOD = 'options_main';
51 } else {
52  sqspell_ckMOD($MOD);
53 }
54 
55 /* Load the stuff already. */
56 require_once(SM_PATH . $SQSPELL_DIR . "modules/$MOD.mod");
57 
58 ?>
elseif
if(! sqgetGlobalVar('sound', $sound, SQ_GET)) elseif($sound=='(none)')
Definition: testsound.php:25
sqspell_ckMOD
sqspell_ckMOD($rMOD)
Definition: sqspell_functions.php:511
SM_PATH
const SM_PATH
Definition: sqspell_options.php:20
$SQSPELL_CRYPTO
$SQSPELL_CRYPTO
Definition: sqspell_options.php:33
$SQSPELL_DIR
$SQSPELL_DIR
Definition: sqspell_options.php:32