function views_handler_field_node_translation_link::construct
Construct a new field handler.
Overrides views_handler_field::construct
File
-
modules/
translation/ views_handler_field_node_translation_link.inc, line 18
Class
- views_handler_field_node_translation_link
- Field handler to present a link to the node.
Code
public function construct() {
parent::construct();
$this->additional_fields['nid'] = 'nid';
$this->additional_fields['tnid'] = 'tnid';
$this->additional_fields['title'] = 'title';
$this->additional_fields['language'] = 'language';
}