https://github.com/titomiguelcosta/zorbuspagebundle
A Symfony2 Page Creator Bundle
https://github.com/titomiguelcosta/zorbuspagebundle
Last synced: 2 months ago
JSON representation
A Symfony2 Page Creator Bundle
- Host: GitHub
- URL: https://github.com/titomiguelcosta/zorbuspagebundle
- Owner: titomiguelcosta
- Created: 2012-10-21T00:11:28.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2015-01-04T21:48:25.000Z (over 10 years ago)
- Last Synced: 2025-01-29T20:44:15.142Z (4 months ago)
- Language: PHP
- Size: 283 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Zorbus Page Bundle
==================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:
```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