You are here

function views_handler_field_comment_link::construct in Views (for Drupal 7) 6.2

Same name and namespace in other branches
  1. 6.3 modules/comment/views_handler_field_comment_link.inc \views_handler_field_comment_link::construct()

Construct a new field handler.

Overrides views_handler_field::construct

1 call to views_handler_field_comment_link::construct()
views_handler_field_comment_link_edit::construct in modules/comment/views_handler_field_comment_link_edit.inc
Construct a new field handler.
1 method overrides views_handler_field_comment_link::construct()
views_handler_field_comment_link_edit::construct in modules/comment/views_handler_field_comment_link_edit.inc
Construct a new field handler.

File

modules/comment/views_handler_field_comment_link.inc, line 6

Class

views_handler_field_comment_link
Base field handler to present a link.

Code

function construct() {
  parent::construct();
  $this->additional_fields['cid'] = 'cid';
  $this->additional_fields['nid'] = 'nid';
}