Since Filters are saved into a $_SESSION variable, this module can serialize and unserialize all this options into a table row.

User may save theirs views filters and possible share with other users of the view.

Comments

davidarthur’s picture

Version: » 6.x-1.x-dev

Great idea +1, is anyone working on this? I might be interested if i find the time...

Mojah’s picture

This functionality is part of the module road map and will be part of the first release.

drclaw’s picture

Right now I've just about finished creating a method to save filter sets. I'm basically just saving the serialized array of filters into a new database table (aef_saved_filters). Then when you want to load a saved filter set, we just have to unserialize the array directly into the aef_dynamic_exposed_form_plugin object's session property ($this->session). Pretty much exactly what's suggested above.

Will have a patch to post sometime this week.