Skip to content

Latest commit

 

History

History
20 lines (17 loc) · 485 Bytes

README.md

File metadata and controls

20 lines (17 loc) · 485 Bytes

MMCmfRoutingBundle

Append to app/AppKernel.php

You need to add the bundle to your app/AppKernel.php. This bundle also requires the MMCmfNodeBundle, so make sure this bundle is also registered.

...
    public function registerBundles()
    {
        $bundles = array(
            ...
            new MandarinMedien\MMCmfPageBundle\MMCmfNodeBundle(),
            new MandarinMedien\MMCmfPageBundle\MMCmfRoutingBundle(),
            ...
            );
    ....
    }
...