You are here

function nodereferrer_view_handler_operator_innotin in NodeReferrer 5

1 string reference to 'nodereferrer_view_handler_operator_innotin'
nodereferrer_views_tables in ./nodereferrer.module
Implementation of hook_views_tables

File

./nodereferrer.module, line 402
Defines a field type for backlinking referencing nodes. @todo -clear content cache with nodeapi. -query nids for access on load/view..

Code

function nodereferrer_view_handler_operator_innotin() {
  return array(
    'in' => t('IN'),
    'not in' => t('NOT IN'),
  );
}