function 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 58
Class
- views_handler_field_comment
- Field handler to allow linking to a comment.
Code
public function render_link($data, $values) {
if (!empty($this->options['link_to_comment'])) {
$this->options['alter']['make_link'] = TRUE;
$nid = $this->get_value($values, 'nid');
$cid = $this->get_value($values, 'cid');
if (!empty($cid)) {
$this->options['alter']['path'] = "comment/" . $cid;
$this->options['alter']['fragment'] = "comment-" . $cid;
}
elseif ($this->options['link_to_node']) {
$this->options['alter']['path'] = "node/" . $nid;
}
}
return $data;
}