Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
states.install.config.php
Go to the documentation of this file.
1 <?php
7 $base = basename($_SERVER['SCRIPT_FILENAME']);
8 
9 return [
10  'navInstallerTitles' => [
11  'install' => 'Magento Installer',
12  ],
13  'navInstaller' => [
14  [
15  'id' => 'root',
16  'step' => 0,
17  'views' => ['root' => []],
18  ],
19  [
20  'id' => 'root.license',
21  'url' => 'license',
22  'templateUrl' => "$base/license",
23  'title' => 'License',
24  'main' => true,
25  'nav' => false,
26  'order' => -1,
27  'type' => 'install'
28  ],
29  [
30  'id' => 'root.landing-install',
31  'url' => 'landing-install',
32  'templateUrl' => "$base/landing-installer",
33  'title' => 'Installation',
34  'controller' => 'landingController',
35  'main' => true,
36  'default' => true,
37  'order' => 0,
38  'type' => 'install'
39  ],
40  [
41  'id' => 'root.readiness-check-install',
42  'url' => 'readiness-check-install',
43  'templateUrl' => "{$base}/readiness-check-installer",
44  'title' => "Readiness \n Check",
45  'header' => 'Step 1: Readiness Check',
46  'nav' => true,
47  'order' => 1,
48  'type' => 'install'
49  ],
50  [
51  'id' => 'root.readiness-check-install.progress',
52  'url' => 'readiness-check-install/progress',
53  'templateUrl' => "{$base}/readiness-check-installer/progress",
54  'title' => 'Readiness Check',
55  'header' => 'Step 1: Readiness Check',
56  'controller' => 'readinessCheckController',
57  'nav' => false,
58  'order' => 2,
59  'type' => 'install'
60  ],
61  [
62  'id' => 'root.add-database',
63  'url' => 'add-database',
64  'templateUrl' => "{$base}/add-database",
65  'title' => "Add \n a Database",
66  'header' => 'Step 2: Add a Database',
67  'controller' => 'addDatabaseController',
68  'nav' => true,
69  'validate' => true,
70  'order' => 3,
71  'type' => 'install'
72  ],
73  [
74  'id' => 'root.web-configuration',
75  'url' => 'web-configuration',
76  'templateUrl' => "{$base}/web-configuration",
77  'title' => "Web \n Configuration",
78  'header' => 'Step 3: Web Configuration',
79  'controller' => 'webConfigurationController',
80  'nav' => true,
81  'validate' => true,
82  'order' => 4,
83  'type' => 'install'
84  ],
85  [
86  'id' => 'root.customize-your-store',
87  'url' => 'customize-your-store',
88  'templateUrl' => "{$base}/customize-your-store",
89  'title' => "Customize \n Your Store",
90  'header' => 'Step 4: Customize Your Store',
91  'controller' => 'customizeYourStoreController',
92  'nav' => true,
93  'order' => 5,
94  'type' => 'install'
95  ],
96  [
97  'id' => 'root.create-admin-account',
98  'url' => 'create-admin-account',
99  'templateUrl' => "{$base}/create-admin-account",
100  'title' => "Create \n Admin Account",
101  'header' => 'Step 5: Create Admin Account',
102  'controller' => 'createAdminAccountController',
103  'nav' => true,
104  'validate' => true,
105  'order' => 6,
106  'type' => 'install'
107  ],
108  [
109  'id' => 'root.install',
110  'url' => 'install',
111  'templateUrl' => "{$base}/install",
112  'title' => 'Install',
113  'header' => 'Step 6: Install',
114  'controller' => 'installController',
115  'nav' => true,
116  'order' => 7,
117  'type' => 'install'
118  ],
119  [
120  'id' => 'root.success',
121  'url' => 'success',
122  'templateUrl' => "{$base}/success",
123  'title' => 'Success',
124  'controller' => 'successController',
125  'main' => true,
126  'order' => 8,
127  'type' => 'install'
128  ],
129  ],
130 ];