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.
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
Comment #1
davidarthur commentedGreat idea +1, is anyone working on this? I might be interested if i find the time...
Comment #2
Mojah commentedThis functionality is part of the module road map and will be part of the first release.
Comment #3
drclaw commentedRight 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.