Download the PHP package spiriitlabs/form-filter-bundle without Composer
On this page you can find all versions of the php package spiriitlabs/form-filter-bundle. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download spiriitlabs/form-filter-bundle
More information about spiriitlabs/form-filter-bundle
Files in spiriitlabs/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/SpiriitLabs/form-filter-bundle
Informations about the package form-filter-bundle
SpiriitFormFilterBundle
The LexikFormFilterBundle, a historical bundle, is now renamed to SpiriitFormFilterBundle. The code remains unchanged; only the name and organization have changed on GitHub.
This Symfony 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.
Installation
================
The bundle can be installed using Composer or the Symfony binary:
Use it in two steps
create a form
use it in your controller
Documentation
This Symfony bundle is compatible with Symfony 4.3 or higher.
For Symfony 2.8/3.4 please use tags v5.*
For installation and how to use the bundle refer to Resources/doc/index.md
- Installation
- Configuration
- Provided form types
- Example & inner workings
- Simple example
- Inner workings
- Working with the filters
- Customize condition operator
- Filter customization
- Working with entity associations and embeddeding filters
- Doctrine embeddables
- Create your own filter type
- Enable validation on your filter type
- The FilterTypeExtension
- Working with other bundles
- KNP Paginator example
- Real use case - Advanced usage with PagerFanta
Community Support
Please consider opening a question on StackOverflow using the spiriitformfilterbundle
tag, it is the official support platform for this bundle.
Github Issues are dedicated to bug reports and feature requests.
For compatibility with Symfony 2.8 and 3.4
Please use last tag v5.*
Credits
- Spiriit [email protected]
- All contributors
License
This bundle is under the MIT license.
For the whole copyright, see the LICENSE file distributed with this source code.
All versions of form-filter-bundle with dependencies
doctrine/orm Version ^3.0
doctrine/dbal Version ^3.0
symfony/form Version ^5.4|^6.4|^7.0
symfony/framework-bundle Version ^5.4|^6.4|^7.0