function render_link($node, $values) {
if (node_access('view', $node)) {
$this->options['alter']['make_link'] = TRUE;
$this->options['alter']['path'] = "node/{$node->nid}";
$text = !empty($this->options['text']) ? $this->options['text'] : t('view');
return $text;
}
}