Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
routes.php
Go to the documentation of this file.
1 <?php
6 return [
7  'backend' => [
8  'id' => 'backend',
9  'routes' => [
10  'adminhtml' => [
11  'id' => 'adminhtml',
12  'frontName' => 'admin',
13  'modules' => [
14  'Magento_ModuleA',
15  'Magento_ModuleB',
16  'Magento_ModuleC',
17  'Magento_ModuleD',
18  'Magento_ModuleE',
19  'Magento_ModuleF',
20  ],
21  ],
22  'customer' => ['id' => 'customer', 'frontName' => 'customer', 'modules' => ['Magento_ModuleE']],
23  'wishlist' => ['id' => 'wishlist', 'frontName' => 'wishlist', 'modules' => ['Magento_ModuleC']],
24  ],
25  ],
26  'front' => ['id' => 'front']
27 ];