function location_handler_operator_eq in Location 5
Same name and namespace in other branches
- 5.3 contrib/location_views/location_views.module \location_handler_operator_eq()
A list of options to be used in = queries
1 string reference to 'location_handler_operator_eq'
- location_views_tables in contrib/
location_views/ location_views.module - For operation with the views.module.
File
- contrib/
location_views/ location_views.module, line 825 - Views-enables the location module.
Code
function location_handler_operator_eq() {
return array(
'' => t('<All>'),
'=' => t('='),
'!=' => t('not ='),
);
}