napas / form-extra-bundle
Symfony2 extra form field types
Package info
github.com/Napas/NapasFormExtraBundle
Type:symfony-bundle
pkg:composer/napas/form-extra-bundle
v0.1.4
2014-06-28 17:26 UTC
Requires
- symfony/symfony: >=2.1
README
Extra fields for Symfony2 forms.
Instalation
Add this bundle to your composer.json file:
{
"require": {
"napas/form-extra-bundle": "~0.1"
}
}
Register the bundle in app/AppKernel.php:
// app/AppKernel.php
public function registerBundles()
{
return array(
// ...
new Napas\FormExtraBundle\NapasFormExtraBundle(),
);
}
Done!
Field types
##US States choice field
Usage
$builder->add('State', 'us_states');