A Drag & Drop Form builder inspired from the Git package https://github.com/minikomi/Bootstrap-Form-Builder and adapted for Sonata-Admin with bootstrap v3 and Jquery
You need Bootstrap v3 and Jquery on your Javascript/CSS requirements and a recent Sonata Admin installation.
You can download and put on your /src directory (like this src/Pirastru/FormBuilderBundle) or insert on your vendor directory with the follow command :
php -dmemory_limit=1G ./composer.phar require pirasterize/sonata-form-builder
If you have a >minimum-stability< error is because your symfony installation accept only stable packages. Edit composer.json file and change "minimum-stability" from "stable" to "dev" :
...
"minimum-stability": "dev",
...
Insert the follow line on your AppKernel.php in your symfony :
class AppKernel extends Kernel
{
public function registerBundles()
{
$bundles = array(
// ...
new Gregwar\CaptchaBundle\GregwarCaptchaBundle(),
new Pirastru\FormBuilderBundle\PirastruFormBuilderBundle()
);
// ...
}
// ...
}
Add the following configuration to your app/config/config.yml
:
gregwar_captcha: ~
Add the following configuration to your app/config/parameters.yml
:
formbuilder_email_from: jeanmichel@basquiat.com
$php app/console doctrine:schema:update --force
Append the following code to app/config/routing.yml or better to separate app/config/routing_admin.yml :
sonata_form_builder:
resource: '@PirastruFormBuilderBundle/Controller/FormBuilderController.php'
type: annotation
In order to have on your list of Admin entities the Form Builder you must put on your configuration file (this case app/config/sonata/sonata_admin.yml), inside of the directive of 'sonata_admin' the follow code :
sonata_admin:
....
dashboard:
....
groups:
...
sonata.admin.group.formbuilder:
label: Form Builder
items:
- pirastru_form_builder.admin
In order to have on the list of blocks the Form Builder Block available on a page put on your configuration file (app/config/sonata/sonata_block.yml) the follow line :
sonata_block:
....
blocks:
....
pirastru_form_builder.block:
Run the follow command on your console to install assets :
$php app/console assets:install
Check on your Sonata Admin Entities you should see the 'Form Builder' Menu than create a new drag&drop form. After that create a page from sonata page or edit an existing one and put from the list of available blocks the block called "Form Builder Drag&Drop". On Options choose the Form you just created, and take a look on the page.
Install RequireJS
npm install -g requirejs
And run following command in directory Resources/public/BootstrapFormBuilder
:
r.js -o assets/js/lib/build.js