raindrop / page-bundle
Symfony Raindrop PageBundle
Installs: 526
Dependents: 0
Suggesters: 0
Security: 0
Stars: 6
Watchers: 3
Forks: 2
Open Issues: 0
Type:symfony-bundle
Requires
- php: >=5.3.3
- doctrine/doctrine-bundle: 1.1.*@dev
- doctrine/orm: >=2.2.3,<2.4-dev
- sonata-project/admin-bundle: 2.1.*@dev
- symfony/framework-bundle: 2.1.*
- symfony/monolog-bundle: >=2.1,<3
Requires (Dev)
- symfony/class-loader: 2.1.*
- symfony/finder: 2.1.*
- symfony/form: 2.1.*
- symfony/yaml: 2.1.*
This package is not auto-updated.
Last update: 2024-11-09 14:42:42 UTC
README
Raindrop Page Bundle
This bundle offers a simple CMS mechanism based on SonataAdminBundle + stuffs and FOSUserBundle. We also use some proprietary bundle. This bundle exists as an alternate approach to SonataPageBundle, in particular it is more database oriented for long term and continuous maintenance and the administration is all bound to a backend application (no frontend inline editing. As alternative option, preview is into roadmap).
INSTALLATION:
First add the dependency to your composer.json
file:
"require": {
...
"raindrop/page-bundle": "dev-master"
},
Then install the bundle with the command:
php composer.phar update
Enable the bundle in your application kernel:
<?php // app/AppKernel.php public function registerBundles() { $bundles = array( // ... new Raindrop\PageBundle\RaindropPageBundle(), ); }
Now the bundle is enabled.
CONFIGURATION:
First of all update your schema: php app/console doctrine:schema:update --force (for development environment) now it is up to your strategy... the production should migrate similarly or execute a query as result to following php app/console doctrine:schema:update --dump-sql
There is no need for yml configuration except for the fact that you maybe want PageAdmin to show up into your dashboard:
sonata_block:
default_contexts: [cms]
blocks:
raindrop_page.block.service.template: // <---- add this line
sonata.admin.block.admin_list:
contexts: [admin]