Download the PHP package tmsolution/form-filter-bundle without Composer
On this page you can find all versions of the php package tmsolution/form-filter-bundle. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download tmsolution/form-filter-bundle
More information about tmsolution/form-filter-bundle
Files in tmsolution/form-filter-bundle
Package form-filter-bundle
Short Description This bundle aim to provide classes to build some form filters and then build a doctrine query from this form filter.
License MIT
Homepage https://github.com/tmsolution/LexikFormFilterBundle
Informations about the package form-filter-bundle
Overview
This Symfony2 bundle aims to provide classes to build some form types dedicated to filter an entity. Once you created your form type you will be able to update a doctrine query builder conditions from a form type.
The idea is:
- Create a form type extending from
Symfony\Component\Form\AbstractType
as usual. - Add form fields by using provided filter types (e.g. use TextFilterType::class instead of a TextType::class type) (*).
- Then call a service to build the query from the form instance and execute your query to get your result :).
(*): In fact you can use any type, but if you want to apply a filter by not using a XxxFilterType::class type you will have to create a custom listener class to apply the filter for this type.
Documentation
This Symfony3.0
branch is compatible with Symfony 2.8/3.0 or higher.
For installation and how to use the bundle refer to Resources/doc/index.md
Running the test suite
composer install
bin/phpunit
All versions of form-filter-bundle with dependencies
symfony/framework-bundle Version ~2.8|~3.0
symfony/form Version ~2.8|~3.0
doctrine/orm Version ^2.4.8