Skip to content

Latest commit

 

History

History
24 lines (19 loc) · 569 Bytes

README.md

File metadata and controls

24 lines (19 loc) · 569 Bytes

Register the Branding bundle in the AppKernel.

// app/AppKernel.php

// ...
$bundles = [
    new Symfony\Bundle\FrameworkBundle\FrameworkBundle(),
    new Symfony\Bundle\SecurityBundle\SecurityBundle(),
    new Symfony\Bundle\TwigBundle\TwigBundle(),
    // ... and some more

    // add this line
    new Comolo\Contao\BrandingBundle\ComoloContaoBrandingBundle(),
];
// ...

Add the following lines to the beginning of app/config/routing.yml

ComoloContaoBrandingBundle:
    resource: "@ComoloContaoBrandingBundle/Resources/config/routing.yml"