Browse code

Initial Commit

Benjamin Roth authored on26/11/2018 15:55:30
Showing1 changed files
1 1
new file mode 100644
... ...
@@ -0,0 +1,33 @@
1
+<?php
2
+
3
+/*
4
+ * This file is part of eSales Media SinglereisenBundle
5
+ *
6
+ * (c) John Doe
7
+ *
8
+ * @license LGPL-3.0-or-later
9
+ */
10
+
11
+namespace EsalesMedia\SinglereisenBundle\ContaoManager;
12
+
13
+use EsalesMedia\SinglereisenBundle\EsalesMediaSinglereisenBundle;
14
+use Contao\CoreBundle\ContaoCoreBundle;
15
+use Contao\ManagerPlugin\Bundle\BundlePluginInterface;
16
+use Contao\ManagerPlugin\Bundle\Config\BundleConfig;
17
+use Contao\ManagerPlugin\Bundle\Parser\ParserInterface;
18
+
19
+class Plugin implements BundlePluginInterface
20
+{
21
+    /**
22
+     * {@inheritdoc}
23
+     */
24
+    public function getBundles(ParserInterface $parser)
25
+    {
26
+        $arrLoadAfter = [ContaoCoreBundle::class];
27
+
28
+        return [
29
+            BundleConfig::create(EsalesMediaSinglereisenBundle::class)
30
+                ->setLoadAfter($arrLoadAfter)
31
+        ];
32
+    }
33
+}