You are here

function views_handler_operator_andor in Views (for Drupal 7) 5

A list of and/or/nor.

4 string references to 'views_handler_operator_andor'
book_views_tables in modules/views_book.inc
This include file implements views functionality on behalf of book.module
profile_views_add_filter in modules/views_profile.inc
Add profile filters to view table
taxonomy_views_tables in modules/views_taxonomy.inc
This include file implements views functionality on behalf of taxonomy.module
user_views_tables in modules/views_user.inc
This include file implements views functionality on behalf of user.module

File

./views.module, line 1783

Code

function views_handler_operator_andor() {
  return array(
    'AND' => t('Is All Of'),
    'OR' => t('Is One Of'),
    'NOR' => t('Is None Of'),
  );
}