]> git.mxchange.org Git - mailer.git/blobdiff - js/install-data.js
Continued a bit:
[mailer.git] / js / install-data.js
index 7d2ca7cc2f2914c2fa849e13cff64df3296c2b5b..b8493989c256010a60f1898bced4c24c2b0c3e1b 100644 (file)
@@ -1,13 +1,8 @@
 /**
  * JavaScript for installation menu data
  * --------------------------------------------------------------------
- * $Revision::                                                        $
- * $Date::                                                            $
- * $Tag:: 0.2.1-FINAL                                                 $
- * $Author::                                                          $
- * --------------------------------------------------------------------
  * Copyright (c) 2003 - 2009 by Roland Haeder
- * Copyright (c) 2009 - 2012 by Mailer Developer Team
+ * Copyright (c) 2009 - 2016 by Mailer Developer Team
  * For more information visit: http://mxchange.org
  *
  * This program is free software; you can redistribute it and/or modify
@@ -34,18 +29,25 @@ 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] = 'first_admin';
+indexTranslation[7] = 'overview';
+
+// Always last ...
+indexTranslation[indexTranslation.length] = 'finish';
 
-// 'next page' linking, key is current page, value is the next page
-var nextPage = new Array();
+// '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']      = 'first_admin';
+nextPage['first_admin']     = 'overview';
 nextPage['overview']        = 'finish';
 
 // 'previous page' linking, key is current page, value is the previous page
@@ -56,5 +58,7 @@ 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['first_admin']     = 'extensions';
+previousPage['overview']        = 'first_admin';
 previousPage['finish']          = 'overview';