You are here

function views_handler_field_comment::render_link in Views (for Drupal 7) 6.2

Same name and namespace in other branches
  1. 6.3 modules/comment/views_handler_field_comment.inc \views_handler_field_comment::render_link()
  2. 7.3 modules/comment/views_handler_field_comment.inc \views_handler_field_comment::render_link()
1 call to views_handler_field_comment::render_link()
views_handler_field_comment::render in modules/comment/views_handler_field_comment.inc
Render the field.

File

modules/comment/views_handler_field_comment.inc, line 36

Class

views_handler_field_comment
Field handler to allow linking to a comment

Code

function render_link($data, $values) {
  if (!empty($this->options['link_to_comment']) && $data !== NULL && $data !== '') {
    $this->options['alter']['make_link'] = TRUE;
    $this->options['alter']['path'] = "node/" . $values->{$this->aliases['nid']};
    $this->options['alter']['fragment'] = "comment-" . $values->{$this->aliases['cid']};
  }
  return $data;
}