Conditions | 1 |
Paths | 1 |
Total Lines | 13 |
Code Lines | 10 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
12 | public function load(array $configs, ContainerBuilder $container) |
||
13 | { |
||
14 | $configuration = new Configuration(); |
||
15 | $config = $this->processConfiguration($configuration, $configs); |
||
16 | |||
17 | $loader = new Loader\XmlFileLoader($container, new FileLocator(__DIR__.'/../Resources/config')); |
||
18 | $loader->load('filter.xml'); |
||
19 | $loader->load('grid.xml'); |
||
20 | $loader->load('metadata.xml'); |
||
21 | $loader->load('cell.xml'); |
||
22 | $loader->load('action.xml'); |
||
23 | $loader->load('form.xml'); |
||
24 | } |
||
25 | } |
||
26 |