function views_handler_field_node_revision_link::construct
Construct a new field handler.
Overrides views_handler_field::construct
File
-
modules/
node/ views_handler_field_node_revision_link.inc, line 18
Class
- views_handler_field_node_revision_link
- Field handler to present a link to a node revision.
Code
public function construct() {
parent::construct();
$this->additional_fields['node_vid'] = array(
'table' => 'node_revision',
'field' => 'vid',
);
}