comolo/contao-branding

Comolo Branding for Contao

Installs: 45

Dependents: 0

Suggesters: 0

Security: 0

Stars: 1

Watchers: 2

Forks: 0

Open Issues: 0

Type:contao-module

4.3.6 2018-08-17 12:29 UTC

This package is not auto-updated.

Last update: 2024-04-13 17:51:55 UTC


README

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"