Convention applied
[mailer.git] / install.php
index 7b0c6b857cfb479c9458936ab0e194206d52273d..b1ad8f173626a96ce458bd4f54763af8368065a2 100644 (file)
  * Short description : Installation script. Please delete this file     *
  *           after successfully installation or ANYONE can re-setup     *
  *           your mail exchange script!!!                               *
- *                                                                      *
- *           First of all setup the base URL.                           *
  * -------------------------------------------------------------------- *
  * Kurzbeschreibung  : Installationsscript. Bitte loeschen Sie diese    *
  *           Datei nach der fertiggestellten Installation oder JEDER    *
  *           kann Ihr Mailtausch-Script neu einstellen!!!               *
- *                                                                      *
- *           Als erstes sollten Sie die Basis-URL einstellen.           *
  * -------------------------------------------------------------------- *
- *                                                                      *
+ * $Revision::                                                        $ *
+ * $Date::                                                            $ *
+ * $Tag:: 0.2.1-FINAL                                                 $ *
+ * $Author::                                                          $ *
+ * Needs to be in all Files and every File needs "svn propset           *
+ * svn:keywords Date Revision" (autoprobset!) at least!!!!!!            *
  * -------------------------------------------------------------------- *
  * Copyright (c) 2003 - 2008 by Roland Haeder                           *
  * For more information visit: http://www.mxchange.org                  *
  * MA  02110-1301  USA                                                  *
  ************************************************************************/
 
-// Tell every module / include file we are installing
-define ('mxchange_installing', true);
-
 // Load security system
-require ("inc/libs/security_functions.php");
+require('inc/libs/security_functions.php');
+
+// Tell every module / include file we are installing
+$GLOBALS['mxchange_installing'] = true;
 
 // Init "action" and "what"
-global $what, $action;
-$GLOBALS['what'] = ""; $GLOBALS['action'] = "";
+$GLOBALS['what']   = '';
+$GLOBALS['action'] = '';
+
+// Set CSS variable for "normal mode"
+$GLOBALS['output_mode'] = 0;
 
 // Set module
-$GLOBALS['module'] = "install";
+$GLOBALS['module'] = 'install';
 
 // Load config file
-require ("inc/config.php");
-
-// Header
-require (PATH."inc/header.php");
-
-// Reload page to page=welcome when it is not specified
-if (!isset($_GET['page']))
-{
-       LOAD_URL(URL."/install.php?page=welcome");
-}
+require('inc/config-global.php');
 
 // Already installed?
-if ((mxchange_installed) && (admin_registered)) {
+if (isInstalled()) {
        // Add fatal message
-       ADD_FATAL(ALREADY_INSTALLED);
-}
+       addFatalMessage(__FILE__, __LINE__, getMessage('ALREADY_INSTALLED'));
+} // END - if
 
 // Does something goes wrong?
-if ((sizeof($FATAL == 0)) && (empty($FATAL[0]))) {
+if (getTotalFatalErrors() == 0) {
+       // Reload page to page=welcome when it is not specified
+       if (!REQUEST_ISSET_GET('page')) {
+               redirectToUrl('install.php?page=welcome');
+       } // END - if
+
+       // Load header here
+       loadIncludeOnce('inc/header.php');
+
        // Add main installation table
-       LOAD_TEMPLATE("install_header");
+       LOAD_TEMPLATE('install_header');
 
        // Here start's our installtion stuff
-       require_once (PATH."inc/install-inc.php");
+       loadIncludeOnce('inc/install-inc.php');
 
        // Close main installation table
-       LOAD_TEMPLATE("install_footer");
-}
+       LOAD_TEMPLATE('install_footer');
 
-// Footer
-require (PATH."inc/footer.php");
+       // Footer
+       loadIncludeOnce('inc/footer.php');
+} else {
+       // Output fatal messages
+       loadInclude('inc/fatal_errors.php');
+}
 
 //
 ?>