function views_handler_field_node_new_comments::render_link
1 call to views_handler_field_node_new_comments::render_link()
- views_handler_field_node_new_comments::render in modules/
comment/ views_handler_field_node_new_comments.inc - Render the field.
File
-
modules/
comment/ views_handler_field_node_new_comments.inc, line 114
Class
- views_handler_field_node_new_comments
- Field handler to display the number of new comments.
Code
public function render_link($data, $values) {
if (!empty($this->options['link_to_comment']) && $data !== NULL && $data !== '') {
$node = new stdClass();
$node->nid = $this->get_value($values, 'nid');
$node->type = $this->get_value($values, 'type');
$this->options['alter']['make_link'] = TRUE;
$this->options['alter']['path'] = 'node/' . $node->nid;
$this->options['alter']['query'] = comment_new_page_count($this->get_value($values, 'comment_count'), $this->get_value($values), $node);
$this->options['alter']['fragment'] = 'new';
}
return $data;
}