rbsoft/abm-generator

Este bundle permite generar abm o crud en forma sencilla

Installs: 12

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 3

Forks: 0

Open Issues: 0

Language:HTML

Type:symfony-bundle

dev-master / 1.2.0.x-dev 2016-05-02 01:32 UTC

This package is not auto-updated.

Last update: 2024-04-27 16:20:22 UTC


README

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.

Build Status Project Status Latest Stable Version SensioLabsInsight

The idea is:

  1. Create a form type extending from Symfony\Component\Form\AbstractType as usual.
  2. Add form fields by using provided filter types (e.g. use TextFilterType::class instead of a TextType::class type) (*).
  3. 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

composer require rbsoft/abm-generator