]> git.mxchange.org Git - mailer.git/blobdiff - js/install-data.js
AJAX installation is 'basicly finished' :) Plus I threw in a small christmas present...
[mailer.git] / js / install-data.js
index 7d2ca7cc2f2914c2fa849e13cff64df3296c2b5b..4c801ca69e6bea79967fdee19c2510a4ee93c48d 100644 (file)
@@ -34,18 +34,23 @@ indexTranslation[1] = 'base_data';
 indexTranslation[2] = 'database_config';
 indexTranslation[3] = 'smtp_config';
 indexTranslation[4] = 'other_config';
-indexTranslation[5] = 'overview';
-indexTranslation[6] = 'finish';
+indexTranslation[5] = 'extensions';
+indexTranslation[6] = 'overview';
 
-// 'next page' linking, key is current page, value is the next page
-var nextPage = new Array();
+// Always last ...
+indexTranslation[indexTranslation.length] = 'finish';
+
+// 'next/previous page' linking, key is current page, value is the next page
+var nextPage     = new Array();
+var previousPage = new Array();
 
 // Add all 'next page' entries
 nextPage['welcome']         = 'base_data';
 nextPage['base_data']       = 'database_config';
 nextPage['database_config'] = 'smtp_config';
 nextPage['smtp_config']     = 'other_config';
-nextPage['other_config']    = 'overview';
+nextPage['other_config']    = 'extensions';
+nextPage['extensions']      = 'overview';
 nextPage['overview']        = 'finish';
 
 // 'previous page' linking, key is current page, value is the previous page
@@ -56,5 +61,6 @@ previousPage['base_data']       = 'welcome';
 previousPage['database_config'] = 'base_data';
 previousPage['smtp_config']     = 'database_config';
 previousPage['other_config']    = 'smtp_config';
-previousPage['overview']        = 'other_config';
+previousPage['extensions']      = 'other_config';
+previousPage['overview']        = 'extensions';
 previousPage['finish']          = 'overview';