This bundle gives you access to the Filter Widget.
If you haven't already, you can follow the steps to set up Victoire here
Run the following composer command :
php composer.phar require friendsofvictoire/filter-widget
Do not forget to add the bundle in your AppKernel !
class AppKernel extends Kernel
{
public function registerBundles()
{
$bundles = array(
...
new Victoire\Widget\FilterBundle\VictoireWidgetFilterBundle(),
);
return $bundles;
}
}
Create your custom filter with VictoireFilterBundle
Manage ExtraFields for your custom Filter