2 * JavaScript for common installer functions
3 * --------------------------------------------------------------------
8 * --------------------------------------------------------------------
9 * Copyright (c) 2003 - 2009 by Roland Haeder
10 * Copyright (c) 2009 - 2012 by Mailer Developer Team
11 * For more information visit: http://mxchange.org
13 * This program is free software; you can redistribute it and/or modify
14 * it under the terms of the GNU General Public License as published by
15 * the Free Software Foundation; either version 2 of the License, or
16 * (at your option) any later version.
18 * This program is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU General Public License for more details.
23 * You should have received a copy of the GNU General Public License
24 * along with this program; if not, write to the Free Software
25 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,
29 // Installation steps array
30 var installationSteps = new Array();
35 // Init all installation steps
36 installationSteps[0] = 'import_tables_sql';
37 installationSteps[1] = 'import_menu_sql';
38 installationSteps[2] = 'install_extensions';
40 // Always keep as last step
41 installationSteps[installationSteps.length] = 'write_local_config';
43 // Switches instaler by redirecting
44 function switchInstaller (installer) {
46 document.location.href = 'install.php?installer=' + installer;
49 // User has clicked on 'finish'
50 function doFinishInstallation () {
51 // First disable all buttons button
52 resetFooterNavigation();
54 // Display progress window
55 displayProgressWindow('install', 'Init ...');
57 // Wait for window fader
58 $().ready(function () {
59 // Start installation loop delayed
60 window.setTimeout('doInstallationLoop()', 500);
67 // Does the "installation loop"
68 function doInstallationLoop () {
69 // For-loop for all installation steps
70 for (var i = 0; i < installationSteps.length; i++) {
72 outputInstallationStepMessage(installationSteps[i]);
74 // Initialize next step
75 if (sendInstallationStepRequest(i) === false) {
76 // Failed step, so remember it for later display
77 failedStep = installationSteps[i];
86 // Update progress bar
87 updateProgressBar(installationSteps.length);
90 // Is success counter same as array size
91 if (counterSuccess != installationSteps.length) {
92 // Display error message
93 displayErrorWindow('install', getAjaxContent() + ':' + counterSuccess + '/' + installationSteps.length + ':' + failedStep);
97 // Sends an "installation step" request out
98 function sendInstallationStepRequest (i) {
100 if (installationSteps[i] == undefined) {
101 // Not set installation step, so don't send it out
102 throw new 'installationSteps[' + i + '] is not set.';
105 // Send out the request
106 return sendAjaxRequest('install', 'do_step', '&step=' + installationSteps[i], false);
109 // Outputs a "step message"
110 function outputInstallationStepMessage (step) {
112 // @TODO Progress bar is out-of-order: + '<div id="progressbar"></div>'
113 setProgressContent('install', step);