A hook will be added so that field modules can define the filter operations that can be performed on themselves.

Comments

JonBob’s picture

Status: Active » Fixed

hook_field_filter_operators() it is.

KarenS’s picture

JonBob, I notice in your latest a code some comments about problems using greater than and less than signs in views filter operators. I ran into this earlier and found the fix for that. The views module is converting them to the html equivalents (< >) In a view where I needed those operators I just changed my handler to check for them and switch them back to greater than and less than signs before dropping the operators into a query.

KarenS’s picture

I've got to start wrapping my comments in code tags.. what I tried to say is that the views module changes operators like

<> 

into 

&gt; and &lt;
Anonymous’s picture

Status: Fixed » Closed (fixed)