Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
states.uninstall.config.php
Go to the documentation of this file.
1 <?php
7 $base = basename($_SERVER['SCRIPT_FILENAME']);
8 
9 return [
10  'navUpdaterTitles' => [
11  'uninstall' => 'Uninstall ',
12  ],
13  'navUpdater' => [
14  [
15  'id' => 'root.readiness-check-uninstall',
16  'url' => 'readiness-check-uninstall',
17  'templateUrl' => "{$base}/readiness-check-updater",
18  'title' => "Readiness \n Check",
19  'header' => 'Step 1: Readiness Check',
20  'nav' => true,
21  'order' => 2,
22  'type' => 'uninstall'
23  ],
24  [
25  'id' => 'root.readiness-check-uninstall.progress',
26  'url' => 'readiness-check-uninstall/progress',
27  'templateUrl' => "$base/readiness-check-updater/progress",
28  'title' => 'Readiness Check',
29  'header' => 'Step 1: Readiness Check',
30  'controller' => 'readinessCheckController',
31  'nav' => false,
32  'order' => 3,
33  'type' => 'uninstall'
34  ],
35  [
36  'id' => 'root.create-backup-uninstall',
37  'url' => 'create-backup',
38  'templateUrl' => "$base/create-backup",
39  'title' => "Create \n Backup",
40  'header' => 'Step 2: Create Backup',
41  'controller' => 'createBackupController',
42  'nav' => true,
43  'validate' => true,
44  'order' => 4,
45  'type' => 'uninstall'
46  ],
47  [
48  'id' => 'root.create-backup-uninstall.progress',
49  'url' => 'create-backup/progress',
50  'templateUrl' => "$base/complete-backup/progress",
51  'title' => "Create \n Backup",
52  'header' => 'Step 2: Create Backup',
53  'controller' => 'completeBackupController',
54  'nav' => false,
55  'order' => 5,
56  'type' => 'uninstall'
57  ],
58  [
59  'id' => 'root.data-option',
60  'url' => 'data-option',
61  'templateUrl' => "$base/data-option",
62  'title' => "Remove or \n Keep Data",
63  'controller' => 'dataOptionController',
64  'header' => 'Step 3: Remove or Keep Data',
65  'nav' => true,
66  'order' => 6,
67  'type' => 'uninstall'
68  ],
69  [
70  'id' => 'root.start-updater-uninstall',
71  'url' => 'uninstall',
72  'templateUrl' => "$base/start-updater",
73  'title' => "Uninstall",
74  'controller' => 'startUpdaterController',
75  'header' => 'Step 4: Uninstall',
76  'nav' => true,
77  'order' => 7,
78  'type' => 'uninstall'
79  ],
80  [
81  'id' => 'root.uninstall-success',
82  'url' => 'uninstall-success',
83  'templateUrl' => "$base/updater-success",
84  'controller' => 'updaterSuccessController',
85  'order' => 8,
86  'main' => true,
87  'noMenu' => true
88  ],
89  ],
90 ];