You are here

function views_handler_field_node_link in Views (for Drupal 7) 5

1 string reference to 'views_handler_field_node_link'
node_views_tables in modules/views_node.inc
This include file implements views functionality on behalf of node.module

File

modules/views_node.inc, line 411

Code

function views_handler_field_node_link($fieldinfo, $fielddata, $value, $data) {
  return l($fielddata['options'], "node/{$data->nid}");
}