zorbus / page-bundle
A Symfony2 Page bundle
Installs: 58
Dependents: 1
Suggesters: 0
Security: 0
Stars: 0
Watchers: 3
Forks: 0
Open Issues: 0
Type:symfony-bundle
Requires
- php: >=5.3.2
- doctrine/doctrine-bundle: *
- stof/doctrine-extensions-bundle: *
- symfony/framework-bundle: >=2.1,<2.2-dev
- zorbus/block-bundle: *
Suggests
- doctrine/doctrine-fixtures-bundle: To load fixtures data
- doctrine/doctrine-migrations-bundle: To alter database schema in a secure way
- twig/twig: Great template language
This package is not auto-updated.
Last update: 2024-12-21 14:48:06 UTC
README
This bundles allows to create web pages through an admin area powered by Sonata Admin. Data is store on a relation database (only supports Doctrine ORM).
A page consists of a theme (a twig template) and several blocks (provided by the ZorbusBlockBundle).
In app/config.yml
Enable the cmf routing and the doctrine bundles on AppKernel.php:
public function registerBundles() { $bundles = array( ..., new Zorbus\PageBundle\ZorbusPageBundle(), new Zorbus\BlockBundle\ZorbusBlockBundle(), new Stof\DoctrineExtensionsBundle\StofDoctrineExtensionsBundle(), new Symfony\Cmf\Bundle\RoutingBundle\CmfRoutingBundle(), ); }
Add configuration to load the page router.
cmf_routing:
chain:
routers_by_id:
zorbus.page.router: 300
router.default: 100
Add configuration to enable the doctrine extensions:
stof_doctrine_extensions:
default_locale: %locale%
orm:
default:
timestampable: true
sluggable: true
tree: true
sortable: true
The entity repositories must extend the provided ones in the model.
zorbus_page:
entities:
page: Acme\DemoBundle:Page
page_block: Acme\DemoBundle:PageBlock
block: Acme\DemoBundle:Block
Add configuration to point to the entities, replacing the interface. They should extend the provided models.
doctrine:
orm:
resolve_target_entities:
Zorbus\PageBundle\Model\PageInterface: Acme\DemoBundle\Entity\Page
Zorbus\PageBundle\Model\PageBlockInterface: Acme\DemoBundle\Entity\PageBlock
Zorbus\BlockBundle\Model\BlockInterface: Acme\DemoBundle\Entity\Block
In app/routing.yml
zorbus_page:
resource: "@ZorbusPageBundle/Controller"
type: annotation
prefix: /
Update the database
Use the doctrine migrations or update the schema straight away:
$ php app/console doctrine:schema:update --force