From 54f8b74383e0c8cdafacfb720f283bf90dc62df5 Mon Sep 17 00:00:00 2001 From: Pierre Goiffon Date: Wed, 18 Dec 2019 11:05:41 +0100 Subject: [PATCH] :memo: restore WizardStep documentation Do not add documentation in a doc block containing @copyright O:) --- setup/wizardsteps.class.inc.php | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/setup/wizardsteps.class.inc.php b/setup/wizardsteps.class.inc.php index c960f8a04..7d651036d 100644 --- a/setup/wizardsteps.class.inc.php +++ b/setup/wizardsteps.class.inc.php @@ -17,6 +17,28 @@ * You should have received a copy of the GNU Affero General Public License */ +/** + * All the steps of the iTop installation wizard + * + * Steps order (can be retrieved using \WizardController::DumpStructure) : + * + * WizStepWelcome + * WizStepInstallOrUpgrade + * + + + * | | + * v +-----> + * WizStepLicense WizStepDetectedInfo + * WizStepDBParams + + + * WizStepAdminAccount | | + * WizStepMiscParams v +------> + * + WizStepLicense2 +--> WizStepUpgradeMiscParams + * | + + * +---> <-----------------------------------+ + * WizStepModulesChoice + * WizStepSummary + * WizStepDone + */ + require_once(APPROOT.'setup/setuputils.class.inc.php'); require_once(APPROOT.'setup/parameters.class.inc.php'); require_once(APPROOT.'setup/applicationinstaller.class.inc.php');