1 | 1 |
new file mode 100644 |
... | ... |
@@ -0,0 +1,30 @@ |
1 |
+<?php |
|
2 |
+ |
|
3 |
+declare(strict_types=1); |
|
4 |
+ |
|
5 |
+/* |
|
6 |
+ * This file is part of vonRotenberg WMFGO Cevisio Bundle. |
|
7 |
+ * |
|
8 |
+ * (c) vonRotenberg |
|
9 |
+ * |
|
10 |
+ * @license proprietary |
|
11 |
+ */ |
|
12 |
+ |
|
13 |
+namespace vonRotenberg\WmfgoCevisioBundle\ContaoManager; |
|
14 |
+ |
|
15 |
+use Contao\CoreBundle\ContaoCoreBundle; |
|
16 |
+use Contao\ManagerPlugin\Bundle\BundlePluginInterface; |
|
17 |
+use Contao\ManagerPlugin\Bundle\Config\BundleConfig; |
|
18 |
+use Contao\ManagerPlugin\Bundle\Parser\ParserInterface; |
|
19 |
+use vonRotenberg\WmfgoCevisioBundle\VonrotenbergWmfgoCevisioBundle; |
|
20 |
+ |
|
21 |
+class Plugin implements BundlePluginInterface |
|
22 |
+{ |
|
23 |
+ public function getBundles(ParserInterface $parser): array |
|
24 |
+ { |
|
25 |
+ return [ |
|
26 |
+ BundleConfig::create(VonrotenbergWmfgoCevisioBundle::class) |
|
27 |
+ ->setLoadAfter([ContaoCoreBundle::class]), |
|
28 |
+ ]; |
|
29 |
+ } |
|
30 |
+} |