123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- $base = basename($_SERVER['SCRIPT_FILENAME']);
- return [
- 'navUpdaterTitles' => [
- 'install' => 'New Purchases',
- ],
- 'navUpdater' => [
- [
- 'id' => 'root.readiness-check-install',
- 'url' => 'readiness-check-updater',
- 'templateUrl' => "{$base}/readiness-check-updater",
- 'title' => "Readiness \n Check",
- 'header' => 'Step 1: Readiness Check',
- 'nav' => true,
- 'order' => 2,
- 'type' => 'install',
- 'wrapper' => 1
- ],
- [
- 'id' => 'root.readiness-check-install.progress',
- 'url' => 'readiness-check-updater/progress',
- 'templateUrl' => "$base/readiness-check-updater/progress",
- 'title' => 'Readiness Check',
- 'header' => 'Step 1: Readiness Check',
- 'controller' => 'readinessCheckController',
- 'nav' => false,
- 'order' => 3,
- 'type' => 'install',
- 'wrapper' => 1
- ],
- [
- 'id' => 'root.create-backup-install',
- 'url' => 'create-backup',
- 'templateUrl' => "$base/create-backup",
- 'title' => "Create \n Backup",
- 'header' => 'Step 2: Create Backup',
- 'controller' => 'createBackupController',
- 'nav' => true,
- 'validate' => true,
- 'order' => 4,
- 'type' => 'install',
- 'wrapper' => 1
- ],
- [
- 'id' => 'root.create-backup-install.progress',
- 'url' => 'create-backup/progress',
- 'templateUrl' => "$base/complete-backup/progress",
- 'title' => "Create \n Backup",
- 'header' => 'Step 2: Create Backup',
- 'controller' => 'completeBackupController',
- 'nav' => false,
- 'order' => 5,
- 'type' => 'install',
- 'wrapper' => 1
- ],
- [
- 'id' => 'root.start-updater-install',
- 'url' => 'start-updater',
- 'templateUrl' => "$base/start-updater",
- 'controller' => 'startUpdaterController',
- 'title' => "Component \n Install",
- 'header' => 'Step 3: Install',
- 'nav' => true,
- 'order' => 6,
- 'type' => 'install',
- 'wrapper' => 1
- ],
- ],
- ];
|