PHP code example of spiriitlabs / form-filter-bundle
1. Go to this page and download the library: Download spiriitlabs/form-filter-bundle library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
spiriitlabs / form-filter-bundle example snippets
namespace Project\Form\Filter;
use Symfony\Component\Form\AbstractType;
use Symfony\Component\Form\FormBuilderInterface;
use Symfony\Component\OptionsResolver\OptionsResolver;
use Spiriit\Bundle\FormFilterBundle\Filter\Form\Type as Filters;
class RankFilterType extends AbstractType
{
public function buildForm(FormBuilderInterface $builder, array $options)
{
$builder->add('name', Filters\TextFilterType::class);
$builder->add('rank', Filters\NumberFilterType::class);
}
}
class DefaultController extends AbstractController
{
public function __invoke(
Request $request,
FormFactoryInterface $formFactory,
EntityManagerInterface $em,
FilterBuilderUpdater $filterBuilderUpdater
): Response
{
$form = $formFactory->create(RankFilterType::class);
$form->handleRequest($request);
$filterBuilder = $em
->getRepository(MyEntity::class)
->createQueryBuilder('e');
$filterBuilderUpdater->addFilterConditions($form, $filterBuilder);
// now look at the DQL =)
dump($filterBuilder->getDql());
return $this->render('testFilter.html.twig', [
'form' => $form,
]);
}
}
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.