You are here

function nodereferrer_view_handler_argument_field in NodeReferrer 5

1 string reference to 'nodereferrer_view_handler_argument_field'
nodereferrer_views_arguments in ./nodereferrer.module
Implementation of hook_views_arguments().

File

./nodereferrer.module, line 454
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_argument_field($op, &$query, $a1, $a2 = NULL) {
  $function = 'nodereferrer_view_handler_argument_field_' . $op;
  if (function_exists($function)) {
    $function($query, $a1, $a2);
  }
}