function views_handler_operator_or in Views (for Drupal 7) 5
A list of or/nor.
2 string references to 'views_handler_operator_or'
- node_views_tables in modules/
views_node.inc - This include file implements views functionality on behalf of node.module
- user_views_tables in modules/
views_user.inc - This include file implements views functionality on behalf of user.module
File
- ./
views.module, line 1790
Code
function views_handler_operator_or() {
return array(
'OR' => t('Is One Of'),
'NOR' => t('Is None Of'),
);
}