2017 © Pedro Peláez
 

symfony-bundle page-bundle

A Symfony2 Page bundle

image

zorbus/page-bundle

A Symfony2 Page bundle

  • Sunday, January 4, 2015
  • by titomiguelcosta
  • Repository
  • 2 Watchers
  • 0 Stars
  • 58 Installations
  • PHP
  • 1 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 2 Versions
  • 0 % Grown

The README.md

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)., (*1)

A page consists of a theme (a twig template) and several blocks (provided by the ZorbusBlockBundle)., (*2)

In app/config.yml

Enable the cmf routing and the doctrine bundles on AppKernel.php:, (*3)

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., (*4)

cmf_routing:
    chain:
        routers_by_id:
            zorbus.page.router: 300
            router.default: 100

Add configuration to enable the doctrine extensions:, (*5)

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., (*6)

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., (*7)

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:, (*8)

$ php app/console doctrine:schema:update --force, (*9)

The Versions

04/01 2015
21/10 2012