Used EL code {%template,LoadTemplate=foo%} instead of loadTemplate('foo', TRUE);
[mailer.git] / install.php
1 <?php
2 /************************************************************************
3  * Mailer v0.2.1-FINAL                                Start: 08/25/2003 *
4  * ===================                          Last change: 04/26/2004 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : install.php                                      *
8  * -------------------------------------------------------------------- *
9  * Short description : Installation script.                             *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Installationsscript.                             *
12  * -------------------------------------------------------------------- *
13  * $Revision::                                                        $ *
14  * $Date::                                                            $ *
15  * $Tag:: 0.2.1-FINAL                                                 $ *
16  * $Author::                                                          $ *
17  * -------------------------------------------------------------------- *
18  * Copyright (c) 2003 - 2009 by Roland Haeder                           *
19  * Copyright (c) 2009 - 2012 by Mailer Developer Team                   *
20  * For more information visit: http://mxchange.org                      *
21  *                                                                      *
22  * This program is free software; you can redistribute it and/or modify *
23  * it under the terms of the GNU General Public License as published by *
24  * the Free Software Foundation; either version 2 of the License, or    *
25  * (at your option) any later version.                                  *
26  *                                                                      *
27  * This program is distributed in the hope that it will be useful,      *
28  * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
29  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
30  * GNU General Public License for more details.                         *
31  *                                                                      *
32  * You should have received a copy of the GNU General Public License    *
33  * along with this program; if not, write to the Free Software          *
34  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
35  * MA  02110-1301  USA                                                  *
36  ************************************************************************/
37
38 // XDEBUG call
39 //* DEBUG: */ xdebug_start_trace();
40
41 // Load security system
42 require('inc/libs/security_functions.php');
43
44 // Init start time
45 $GLOBALS['__start_time'] = microtime(TRUE);
46
47 // Tell every module / require file we are installing
48 $GLOBALS['__mailer_installing'] = TRUE;
49
50 // Set module and output mode
51 $GLOBALS['__module']      = 'install';
52 $GLOBALS['__output_mode'] = '0';
53
54 // Load config file
55 require('inc/config-global.php');
56
57 // Set content type
58 setContentType('text/html');
59
60 // Is 'install_page' set?
61 if (!isGetRequestElementSet('install_page')) {
62         // No, so set it to 'welcome'
63         setGetRequestElement('install_page', 'welcome');
64 } // END - if
65
66 // Set username
67 setUsername('{--USERNAME_INSTALLER--}');
68
69 // Already installed?
70 if ((isInstalled()) && (getRequestElement('install_page') != 'finished')) {
71         // Add fatal message
72         addFatalMessage(__FILE__, __LINE__, '{--MAILER_ALREADY_INSTALLED--}');
73 } // END - if
74
75 // Load header here
76 loadIncludeOnce('inc/header.php');
77
78 // Handle fatal errors
79 runFilterChain('handle_fatal_errors');
80
81 // Is plain or AJAX-enabled installation used?
82 if (isGetRequestElementSet('installer')) {
83         // Set installer type
84         setSession('installer', getRequestElement('installer'));
85
86         // Redirect to install.php again
87         redirectToUrl('install.php');
88 } elseif (isAjaxInstaller()) {
89         // AJAX-enabled installer:
90         // Load 'init' page
91         addTemplateToInstallContent('install_page_init');
92
93         // Prepare content
94         $content = array(
95                 'install_page' => getRequestElement('install_page')
96         );
97
98         // Load main installation table
99         loadTemplate('install_main_ajax', FALSE, $content);
100 } elseif (isPlainInstaller()) {
101         // Plain installer:
102         // Load include file
103         loadIncludeOnce('inc/install-inc.php');
104
105         // Load main template
106         loadTemplate('install_main_plain');
107 } else {
108         // What do you want, red or blue pill? AJAX or plain installer? ;-)
109         loadTemplate('install_selector');
110 }
111
112 // Footer
113 loadIncludeOnce('inc/footer.php');
114
115 // [EOF]
116 ?>