dev-master
9999999-devThis bundle aims to provide missing form type in Symfony2.
New BSD
The Requires
- php >=5.3.4
- symfony/framework-bundle ~2.1
by Soliman Cheyssial
form type boolean hidden
This bundle aims to provide missing form type in Symfony2.
This bundle aims to provide missing form type in Symfony2., (*1)
For now, this bundle provide the following types:, (*2)
- hidden_boolean: Keep boolean value in hidden field
Add SocleMissingTypeBundle in your composer.json:, (*3)
{ "require": { "socle/missing-type-bundle": "dev-master" } }
Now tell composer to download the bundle by running the command:, (*4)
$ php composer.phar update # OR $ php composer.phar update socle/missing-type-bundle # to only update the bundle
Enable the bundle in the kernel:, (*5)
<?php // app/AppKernel.php public function registerBundles() { $bundles = array( // ... new Socle\Bundle\MissingTypeBundle\SocleMissingTypeBundle(), ); }
This bundle aims to provide missing form type in Symfony2.
New BSD
form type boolean hidden