X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=js%2Finstall-data.js;h=bf886b89ab4134855078ca217f78f740ada28e22;hb=654f549c9b33a10285c98d17acdd2de73c26462a;hp=7d2ca7cc2f2914c2fa849e13cff64df3296c2b5b;hpb=63f159414369b5ea19a8ca75d8cd8033c45d8341;p=mailer.git diff --git a/js/install-data.js b/js/install-data.js index 7d2ca7cc2f..bf886b89ab 100644 --- a/js/install-data.js +++ b/js/install-data.js @@ -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 - 2013 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';