Closed agenceaddictic closed 6 years ago
Yes, you can do that via the contao manager plugin in the managed edition:
/**
* {@inheritdoc}
*/
public function getBundles(ParserInterface $parser): array
{
return [
BundleConfig::create(MyBundle::class)
->setLoadAfter([
ContaoCommentsBundle::class
]),
];
}
I'm trying to build a custom module by overwriting Contao's comments module.
In localhost so far so good. But, when i push to remote, Contao's comments module seems to be called after my custom module and so my module isn't rendered anymore. (I detected call order with var_dumps).
Why Contao's comments module is called after mine ? Can we change the module call order ?
Thx everyone !!