mandarinmedien / mmcmfcontentbundle
This is the bridge between doctrine content entities and twig which will be the base of the MMCmfBundle
Installs: 158
Dependents: 1
Suggesters: 0
Security: 0
Stars: 0
Watchers: 4
Forks: 0
Open Issues: 0
Language:JavaScript
Type:symfony-bundle
Requires
- mandarinmedien/mmcmfnodebundle: ^0.2||^0.3
- mandarinmedien/mmmmediabundle: ^2.2.1
- twig/twig: ^1.0||^2.0
- dev-master
- 0.3.5
- 0.3.4
- 0.3.3
- 0.3.2
- 0.3.1
- 0.3.0
- 0.2.3
- 0.2.2
- 0.2.1
- 0.2.0
- 0.1.x-dev
- 0.1.14
- 0.1.13
- 0.1.12
- 0.1.11
- 0.1.10.1
- 0.1.10
- 0.1.9.1
- 0.1.9
- 0.1.8.1
- 0.1.8
- 0.1.7
- 0.1.6
- 0.1.5
- 0.1.4
- 0.1.3
- 0.1.2
- 0.1.1
- 0.1
- 0.0.12
- 0.0.11
- 0.0.10
- 0.0.9
- 0.0.8
- 0.0.7
- 0.0.6
- 0.0.5
- 0.0.4
- 0.0.3.7
- 0.0.3.6
- 0.0.3.5
- 0.0.3.4
- 0.0.3.3
- 0.0.3.2
- 0.0.3.1
- 0.0.3
- 0.0.2
- 0.0.1.29
- 0.0.1.28
- 0.0.1.27
- 0.0.1.26
- 0.0.1.25
- 0.0.1.24
- 0.0.1.23
- 0.0.1.22
- 0.0.1.21
- 0.0.1.20
- 0.0.1.13
- 0.0.1.12
- 0.0.1.11
- 0.0.1.10
- 0.0.1.9
- 0.0.1.8
- 0.0.1.7
- 0.0.1.6
- 0.0.1.5
- 0.0.1.4
- 0.0.1.3
- 0.0.1.2
- 0.0.1.1
- 0.0.1
- dev-develop
- dev-release/0.3
This package is auto-updated.
Last update: 2024-11-06 11:04:05 UTC
README
Append to app/AppKernel.php
You need to add the bundle to your app/AppKernel.php.
...
public function registerBundles()
{
$bundles = array(
...
new MandarinMedien\MMCmfContentBundle\MMCmfContentBundle(),
...
);
....
}
...
Append to app/config/config.yml
...
imports:
- ...
- { resource: '@MMCmfContentBundle/Resources/config/config.yml' }
- ...
...
Config -> app/config/config.yml
...
mm_cmf_content:
content_nodes:
contentNode:
templates:
- { name: 'default' }
- { name: 'tile' }
myCustomContentNode:
templates:
- { name: 'default' }
...
install and initiate assets
...
shell:PROJECT_ROOT: cd vendor/mandarinmedien/mmcmfcontentbundle/MandarinMedien/MMCmfContentBundle && bower update && cd ../../../../../ && bin/console as:in --symlink && bin/console assetic:dump
...