From eabb80c87618e4d5f88a90c57ca503948d879c89 Mon Sep 17 00:00:00 2001 From: Simon Vieille Date: Sun, 6 Mar 2022 14:46:37 +0100 Subject: [PATCH] update filters --- src/Form/Blog/Filter/PostFilterType.php | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/src/Form/Blog/Filter/PostFilterType.php b/src/Form/Blog/Filter/PostFilterType.php index 587ab6d..ca25761 100644 --- a/src/Form/Blog/Filter/PostFilterType.php +++ b/src/Form/Blog/Filter/PostFilterType.php @@ -41,6 +41,19 @@ class PostFilterType extends AbstractType ] ); + $builder->add( + 'content', + TextType::class, + [ + 'label' => 'Contenu', + 'required' => false, + 'attr' => [ + ], + 'constraints' => [ + ], + ] + ); + $builder->add( 'contentFormat', ChoiceType::class,