Skip to content

Latest commit

 

History

History
31 lines (25 loc) · 616 Bytes

File metadata and controls

31 lines (25 loc) · 616 Bytes

MMCmfAdminContentNodeAddonBundle

Integrates a CRUD/Administration-GUI of MMCmfContentNode into the MMAdminBundle.

Append to app/AppKernel.php

...
    public function registerBundles()
    {
        ....
        $bundles = array(
            ...
           new MandarinMedien\MMCmf\Admin\PageAddonBundle\MMCmfAdminContentNodeAddonBundle(),
           ...
        );
        ....
    }
...

Append to src/MY_CUSTOM_ADMIN_BUNDLE/config/routing.yml

...

mm_cmf_content_node_addon:
    resource: "@MMCmfAdminContentNodeAddonBundle/Resources/config/routing.yml"
    prefix:   /contentnode

...