Conditions | 1 |
Paths | 1 |
Total Lines | 21 |
Code Lines | 10 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
16 | protected function obtainAppSystemList(): array |
||
17 | { |
||
18 | $appSystemList = parent::obtainAppSystemList(); |
||
19 | |||
20 | //Remove not used systems |
||
21 | unset( |
||
22 | $appSystemList['request'], |
||
23 | $appSystemList['session'], |
||
24 | $appSystemList['errors'], |
||
25 | $appSystemList['ctrlRouterLink'] |
||
26 | ); |
||
27 | |||
28 | $appSystemNS = '\BFW\Install\Core\AppSystems\\'; |
||
29 | |||
30 | //Change ModuleList class |
||
31 | $appSystemList['moduleList'] = $appSystemNS.'ModuleList'; |
||
32 | |||
33 | //Add new system : module installation system |
||
34 | $appSystemList['moduleManager'] = $appSystemNS.'ModuleManager'; |
||
35 | |||
36 | return $appSystemList; |
||
37 | } |
||
53 |