Skip to content

Latest commit

 

History

History
41 lines (26 loc) · 1 KB

README.md

File metadata and controls

41 lines (26 loc) · 1 KB

Victoire DCMS Filter Bundle

What is the purpose of this bundle

This bundle gives you access to the Filter Widget.

Set Up Victoire

If you haven't already, you can follow the steps to set up Victoire here

Install the Bundle

Run the following composer command :

php composer.phar require friendsofvictoire/filter-widget

Reminder

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

VictoireFilterBundle

Manage ExtraFields for your custom Filter

ManageExtrafields