function views_handler_operator_eqneq in Views (for Drupal 7) 5
A list of equal or not equal to.
1 string reference to 'views_handler_operator_eqneq'
- node_views_tables in modules/
views_node.inc - This include file implements views functionality on behalf of node.module
File
- ./
views.module, line 1797
Code
function views_handler_operator_eqneq() {
return array(
'=' => t('Is Equal To'),
'!=' => t('Is Not Equal To'),
);
}