Skip to content

Commit 098fe24

Browse files
committed
MC-33843: Removal of Web Setup Wizard in 2.4.0
1 parent 6cb2452 commit 098fe24

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

49 files changed

+3
-4925
lines changed

dev/tests/integration/testsuite/Magento/Setup/Model/Cron/MultipleStreamOutputTest.php

Lines changed: 0 additions & 54 deletions
This file was deleted.

dev/tests/integration/testsuite/Magento/Setup/Model/Cron/_files/a.txt

Whitespace-only changes.

dev/tests/integration/testsuite/Magento/Setup/Model/Cron/_files/b.txt

Whitespace-only changes.

setup/config/marketplace.config.php

Lines changed: 0 additions & 7 deletions
This file was deleted.

setup/pub/magento/setup/main.js

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -23,19 +23,6 @@ main.controller('navigationController',
2323
return $state.$current.order <= order || !$rootScope.isMenuEnabled;
2424
};
2525
}])
26-
.controller('headerController', ['$scope', '$localStorage', '$window',
27-
function ($scope, $localStorage, $window) {
28-
if ($localStorage.titles) {
29-
$scope.titles = $localStorage.titles;
30-
}
31-
$scope.redirectTo = function (url) {
32-
if (url) {
33-
$window.location.href = url;
34-
}
35-
};
36-
}
37-
]
38-
)
3926
.controller('mainController', [
4027
'$scope', '$state', 'navigationService', '$localStorage',
4128
function ($scope, $state, navigationService, $localStorage) {

setup/src/Magento/Setup/Console/Command/CronRunCommand.php

Lines changed: 0 additions & 158 deletions
This file was deleted.

setup/src/Magento/Setup/Console/CommandList.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,6 @@ protected function getCommandsClasses()
4444
\Magento\Setup\Console\Command\AdminUserCreateCommand::class,
4545
\Magento\Setup\Console\Command\BackupCommand::class,
4646
\Magento\Setup\Console\Command\ConfigSetCommand::class,
47-
\Magento\Setup\Console\Command\CronRunCommand::class,
4847
\Magento\Setup\Console\Command\DbDataUpgradeCommand::class,
4948
\Magento\Setup\Console\Command\DbSchemaUpgradeCommand::class,
5049
\Magento\Setup\Console\Command\DbStatusCommand::class,

setup/src/Magento/Setup/Controller/Navigation.php

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,7 @@
88
use Laminas\Mvc\Controller\AbstractActionController;
99
use Laminas\View\Model\JsonModel;
1010
use Laminas\View\Model\ViewModel;
11-
use Magento\Backend\Model\UrlInterface;
1211
use Magento\Framework\ObjectManagerInterface;
13-
use Magento\Setup\Model\Cron\Status;
1412
use Magento\Setup\Model\Navigation as NavModel;
1513
use Magento\Setup\Model\ObjectManagerProvider;
1614

@@ -24,11 +22,6 @@ class Navigation extends AbstractActionController
2422
*/
2523
protected $navigation;
2624

27-
/**
28-
* @var Status
29-
*/
30-
protected $status;
31-
3225
/**
3326
* @var ViewModel
3427
*/
@@ -41,13 +34,11 @@ class Navigation extends AbstractActionController
4134

4235
/**
4336
* @param NavModel $navigation
44-
* @param Status $status
4537
* @param ObjectManagerProvider $objectManagerProvider
4638
*/
47-
public function __construct(NavModel $navigation, Status $status, ObjectManagerProvider $objectManagerProvider)
39+
public function __construct(NavModel $navigation, ObjectManagerProvider $objectManagerProvider)
4840
{
4941
$this->navigation = $navigation;
50-
$this->status = $status;
5142
$this->objectManagerProvider = $objectManagerProvider->get();
5243
$this->view = new ViewModel();
5344
$this->view->setVariable('menu', $this->navigation->getMenuItems());

0 commit comments

Comments
 (0)