You are here

function nodequeue_views_tab_link in Nodequeue 5.2

display a link to view a node

1 string reference to 'nodequeue_views_tab_link'
nodequeue_views_tables in ./nodequeue.views.inc
Implementation of hook_views_tables()

File

./nodequeue.views.inc, line 506
nodequeue.views.inc Provides support for the Views module.

Code

function nodequeue_views_tab_link($fieldinfo, $fielddata, $value, $data) {
  $link_text = $fielddata['options'] ? $fielddata['options'] : t('Node queues');
  return l($link_text, "node/{$data->nid}/nodequeue");
}