@@ -17,6 +17,7 @@ final class SupervisorExtension extends CompilerExtension
17
17
{
18
18
19
19
const DEFAULTS = [
20
+ 'prefix ' => NULL ,
20
21
'configuration ' => [],
21
22
'defaults ' => [],
22
23
];
@@ -33,7 +34,11 @@ public function loadConfiguration()
33
34
}
34
35
}
35
36
36
- $ this ->loadSupervisorConfiguration ($ config ['configuration ' ], $ config ['defaults ' ]);
37
+ $ this ->loadSupervisorConfiguration (
38
+ (array ) $ config ['configuration ' ],
39
+ (array ) $ config ['defaults ' ],
40
+ isset ($ config ['prefix ' ]) ? (string ) $ config ['prefix ' ] : NULL
41
+ );
37
42
38
43
$ builder ->addDefinition ($ this ->prefix ('renderCommand ' ))
39
44
->setClass (RenderCommand::class, [strtr ($ this ->prefix ('render ' ), '. ' , ': ' )])
@@ -46,7 +51,7 @@ public function loadConfiguration()
46
51
}
47
52
48
53
49
- private function loadSupervisorConfiguration (array $ config , array $ defaults = [])
54
+ private function loadSupervisorConfiguration (array $ config , array $ defaults = [], string $ prefix = NULL )
50
55
{
51
56
$ builder = $ this ->getContainerBuilder ();
52
57
@@ -59,9 +64,13 @@ private function loadSupervisorConfiguration(array $config, array $defaults = []
59
64
}
60
65
if (is_subclass_of ($ sectionClass , Named::class)) {
61
66
foreach ((array ) $ sectionConfig as $ name => $ properties ) {
67
+ $ name = Helpers::expand ($ name , $ builder ->parameters );
68
+ if ($ prefix !== NULL ) {
69
+ $ name = sprintf ('%s-%s ' , $ prefix , $ name );
70
+ }
62
71
$ configuration ->addSetup ('addSection ' , [
63
72
new Statement ($ sectionClass , [
64
- Helpers:: expand ( $ name, $ builder -> parameters ) ,
73
+ $ name ,
65
74
isset ($ defaults [$ sectionName ]) ? $ this ->mergeProperties ($ properties , $ defaults [$ sectionName ]) : $ properties ,
66
75
]),
67
76
]);
0 commit comments