You are here

function location_handler_operator_eq in Location 5.3

Same name and namespace in other branches
  1. 5 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
Implementation of hook_views_tables().

File

contrib/location_views/location_views.module, line 842
Views-enables the location module.

Code

function location_handler_operator_eq() {
  return array(
    '' => t('<All>'),
    '=' => t('='),
    '!=' => t('not ='),
  );
}