Closed ceesvanegmond closed 7 years ago
This enables you to hook into this bundle using prepend().
// Other bundle extension /** * Allow an extension to prepend the extension configurations. * * @param ContainerBuilder $container */ public function prepend(ContainerBuilder $container) { if ($container->hasExtension('just_sonata_theme')) { $container->prependExtensionConfig('just_sonata_theme', [ 'extra_css_assets' => [ xxx' ], 'extra_js_assets' => [ 'xxx', ], ]); } }
### Added - Added new configuration option (array) for extra js/css assets
Feature: Add configuration option for extra assets
This enables you to hook into this bundle using prepend().
Changelog