mandarinmedien / mmcmfroutingbundle
provides the routing for page-entities
Installs: 124
Dependents: 2
Suggesters: 0
Security: 0
Stars: 0
Watchers: 5
Forks: 0
Open Issues: 0
Type:symfony-bundle
Requires
- brandonwamboldt/utilphp: 1.1.*
- mandarinmedien/mmcmfnodebundle: ^0.2||^0.3
This package is auto-updated.
Last update: 2024-10-25 11:16:17 UTC
README
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(),
...
);
....
}
...