function views_handler_field_comment_link::construct

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 8

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';
}