th3mouk/cms-page-bundle

This package is abandoned and no longer maintained. No replacement package was suggested.

Symfony CMSPageBundle extends of Sonata Project

Installs: 1 909

Dependents: 1

Suggesters: 0

Security: 0

Stars: 1

Watchers: 2

Forks: 0

Open Issues: 0

Type:symfony-bundle

2.0.0 2016-08-24 09:02 UTC

This package is auto-updated.

Last update: 2021-10-04 21:14:36 UTC


README

Bundle extending SonataPageBundle in order to simplify the use by developers and future users, trying to not alter the original flexibility, and to give them new basic tools and views.

SensioLabsInsight Latest Stable Version Total Downloads Build Status Latest Unstable Version License

This bundle is part of the preconfigured CMS based on Symfony and Sonata : CMSStarter | CMSCoreBundle

SonataPageBundle

The use of this bundle require understanding of the SonataPageBundle.

Installation

Composer

composer require th3mouk/cms-page-bundle ^2.0

SonataPageBundle

Install the original SonataPageBundle.

Easy extends

app/console sonata:easy-extends:generate Th3MoukCMSPageBundle

Update Kernel

# app/AppKernel.php
...
new Th3Mouk\CMSPageBundle\Th3MoukCMSPageBundle(),
new Application\Th3Mouk\CMSPageBundle\ApplicationTh3MoukCMSPageBundle(),
...

Configuration

Create the following files:

# app/config/bundles/override.yml
parameters:
    #Overload PageAdmin
    sonata.page.admin.page.class: Th3Mouk\CMSPageBundle\Admin\PageAdmin
    #Overload PageManager
    sonata.page.manager.page.class: Th3Mouk\CMSPageBundle\Entity\PageManager
    #Overload Transformer otherwise additional attributes will be non-serialized
    sonata.page.transformer.class: Th3Mouk\CMSPageBundle\Entity\Transformer
    #Overload PageAdminController
    sonata.page.admin.page.controller: Th3MoukCMSPageBundle:PageAdmin
# app/config/sonata/sonata_page.yml
sonata_page:
    class:
        page:     Application\Th3Mouk\CMSPageBundle\Entity\Page
        snapshot: Application\Th3Mouk\CMSPageBundle\Entity\Snapshot
        block:    Application\Th3Mouk\CMSPageBundle\Entity\Block
        site:     Application\Th3Mouk\CMSPageBundle\Entity\Site

Include them:

# app/config/config.yml
imports:
    # Sonata Page Bundle
    - { resource: sonata/sonata_page.yml }

    # Override Vendors Parameters
    - { resource: bundles/override.yml }

Please

Feel free to improve all of this work, project or bundles.