Download the PHP package vincet/base-bundle without Composer
On this page you can find all versions of the php package vincet/base-bundle. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Informations about the package base-bundle
BaseBundle
This bundle define base class to improve your development.
It requires SonataAdminBundle and SonataDoctrineORMAdminBundle
Installation
Use composer to install
For symfony <2.5 use the 2.2 version
Entity Management
This bundle defines a BaseManager class that is compatible with SonataAdmin ModelManager.
Juste define a new class for your entity :
Define the manager as a service in your services.yml :
you can now acces this manager from any controller :
To use this manager with SonataAdmin, add a call to setModelManager in your services.yml file
Your front and Admin application will now use the same entity manager.
Admin Controller
This bundle also define a BaseAdminController that catch exception throwed during an admin action. It is very easy to use :
Define your admin controller :
Don't forget to use this controller in your admin service (the third argument).
Commands
To make your development faster a command can generate the following classes for an entity, bundle or namespace :
- Admin/EntityAdmin
- Controller/Admin/EntityAdminController
- Manager/EntityManager
and create/update the following files :
- Resources/config/services.yml
- Resources/translations/YourBundle.en.yml
- Resources/translations/YourBundle.fr.yml
To use it :
Another command generate a frontend CRUD controller. It's based on the \Sensio\Bundle\GeneratorBundle\Command\GenerateDoctrineCrudCommand
To use it :
All versions of base-bundle with dependencies
symfony/symfony Version ~2.8 || ^3.0
sonata-project/admin-bundle Version ~2.2,>=2.2.4 || ^3.0
sonata-project/doctrine-orm-admin-bundle Version ~2.2 || ^3.0
sensio/generator-bundle Version ~3.0