Comment removed
[mailer.git] / modules.php
index 80efd41b7508e46f229e623cb0fe5c09a8c9ed19..85703b5e056b5332a9a043b5ca6c4f3a41b44d76 100644 (file)
  * -------------------------------------------------------------------- *
  * Kurzbeschreibung  : Hauptladedatei. Laedt alle benoetigten Dateien   *
  * -------------------------------------------------------------------- *
- * $Revision:: 856                                                    $ *
- * $Date:: 2009-03-06 20:24:32 +0100 (Fr, 06. Mär 2009)              $ *
+ * $Revision::                                                        $ *
+ * $Date::                                                            $ *
  * $Tag:: 0.2.1-FINAL                                                 $ *
- * $Author:: stelzi                                                   $ *
+ * $Author::                                                          $ *
  * Needs to be in all Files and every File needs "svn propset           *
  * svn:keywords Date Revision" (autoprobset!) at least!!!!!!            *
  * -------------------------------------------------------------------- *
 // XDEBUG call
 //xdebug_start_trace();
 
-// Load security stuff here (Oh, I hope this is not unsecure? Am I paranoia??? ;-) )
-require("inc/libs/security_functions.php");
+// Load security stuff here
+require('inc/libs/security_functions.php');
 
 // Init "action" and "what"
 $GLOBALS['startTime'] = microtime(true);
 $GLOBALS['output_mode'] = 0;
-$GLOBALS['what']   = "";
-$GLOBALS['action'] = "";
-$GLOBALS['module'] = "";
+$GLOBALS['what']   = '';
+$GLOBALS['action'] = '';
+$GLOBALS['module'] = '';
 
 // Needed include files
-require("inc/config.php");
+require('inc/config.php');
 
-// Fix missing module to "index"
-if (!REQUEST_ISSET_GET(('module'))) REQUEST_SET_GET('module', "index");
+// Fix missing module to 'index'
+if (!REQUEST_ISSET_GET('module')) REQUEST_SET_GET('module', 'index');
 
 // Check if logged in
 if (IS_MEMBER()) {
@@ -63,19 +63,19 @@ if (IS_MEMBER()) {
        if (SQL_NUMROWS($result) == 1) {
                // Load surname and family's name and build the username
                list($s, $f) = SQL_FETCHROW($result);
-               $username = $s." ".$f;
+               $username = $s.' '.$f;
 
                // Additionally admin?
                if (IS_ADMIN()) {
                        // Add it
-                       $username .= " ({--_ADMIN_SHORT--})";
+                       $username .= ' ({--_ADMIN_SHORT--})';
                } // END - if
        } else {
                // Hmmm, logged in and no valid userid?
-               $username = "<em>{--_UNKNOWN--}</em>";
+               $username = '<em>{--_UNKNOWN--}</em>';
 
                // Destroy session
-               destroy_user_session();
+               destroyUserSession();
 
                // Kill userid
                setUserId(0);
@@ -92,11 +92,11 @@ if (IS_MEMBER()) {
 }
 
 // The header file
-LOAD_INC_ONCE("inc/header.php");
+loadIncludeOnce('inc/header.php');
 
 // Modules are by default not valid!
-$MOD_VALID = false; $check = "failed";
-if ((getConfig('maintenance') == "Y") && (!IS_ADMIN()) && ($GLOBALS['module'] != "admin")) {
+$MOD_VALID = false; $check = 'failed';
+if ((getConfig('maintenance') == 'Y') && (!IS_ADMIN()) && ($GLOBALS['module'] != 'admin')) {
        // Maintain mode is active and you are no admin
        addFatalMessage(__FILE__, __LINE__, getMessage('LANG_DOWN_MAINTAINCE'));
 } elseif ((SQL_IS_LINK_UP()) && (getTotalFatalErrors() == 0)) {
@@ -107,27 +107,27 @@ if ((getConfig('maintenance') == "Y") && (!IS_ADMIN()) && ($GLOBALS['module'] !=
        $check = checkModulePermissions($GLOBALS['module']);
        switch ($check)
        {
-       case "admin_only":
-       case "mem_only":
-       case "done":
+       case 'admin_only':
+       case 'mem_only':
+       case 'done':
                // Does the module exists on local file system?
-               if ((FILE_READABLE(constant('__MODULE'))) && (getTotalFatalErrors() == 0)) {
+               if ((isFileReadable(constant('__MODULE'))) && (getTotalFatalErrors() == 0)) {
                        // Module is valid, active and located on the local disc...
                        $MOD_VALID = true;
                } elseif (!empty($URL)) {
                        // An URL was specified so we load the de-referrer module
-                       LOAD_URL(DEREFERER($URL));
+                       redirectToUrl(DEREFERER($URL));
                } elseif (getTotalFatalErrors() == 0) {
                        addFatalMessage(__FILE__, __LINE__, sprintf(getMessage('LANG_MOD_REG_404'), $GLOBALS['module']));
                }
                break;
 
-       case "404":
+       case '404':
                addFatalMessage(__FILE__, __LINE__, sprintf(getMessage('LANG_MOD_REG_404'), $GLOBALS['module']));
                break;
 
-       case "locked":
-               if (!FILE_READABLE(constant('__MODULE'))) {
+       case 'locked':
+               if (!isFileReadable(constant('__MODULE'))) {
                        // Module does addionally not exists
                        addFatalMessage(__FILE__, __LINE__, sprintf(getMessage('LANG_MOD_REG_404'), $GLOBALS['module']));
                } // END - if
@@ -152,11 +152,11 @@ if (($MOD_VALID) && (defined('__MODULE'))) {
        /////////////////////////////////////////////
        //
        // Everything is okay so we can load the module
-       LOAD_INC_ONCE(constant('__MODULE'));
+       loadIncludeOnce(constant('__MODULE'));
 } // END - if
 
 // Next-to-end add the footer
-LOAD_INC_ONCE("inc/footer.php");
+loadIncludeOnce('inc/footer.php');
 
 //
 ?>