... | ... |
@@ -8,6 +8,17 @@ use Contao\ManagerPlugin\Bundle\Parser\ParserInterface; |
8 | 8 |
use Contao\ManagerPlugin\Dependency\DependentPluginInterface; |
9 | 9 |
use eSalesMedia\eSalesLayoutKit\eSalesLayoutKitBundle; |
10 | 10 |
|
11 |
-class Plugin |
|
11 |
+class Plugin implements BundlePluginInterface |
|
12 | 12 |
{ |
13 |
+ public function getBundles(ParserInterface $parser) |
|
14 |
+ { |
|
15 |
+ return [ |
|
16 |
+ BundleConfig::create(eSalesLayoutKitBundle::class) |
|
17 |
+ ->setLoadAfter( |
|
18 |
+ [ |
|
19 |
+ \Contao\CoreBundle\ContaoCoreBundle::class |
|
20 |
+ ] |
|
21 |
+ ) |
|
22 |
+ ]; |
|
23 |
+ } |
|
13 | 24 |
} |
14 | 25 |
\ No newline at end of file |