You are here

function webform_handler_field_node_link_results::construct in Webform 6.3

File

views/webform_handler_field_node_link_results.inc, line 12
Views handler to display a results link for Webform submissions.

Class

webform_handler_field_node_link_results
Field handler to present a link node edit.

Code

function construct() {
  parent::construct();
  $this->additional_fields['uid'] = 'uid';
  $this->additional_fields['type'] = 'type';
  $this->additional_fields['format'] = array(
    'table' => 'node_revisions',
    'field' => 'format',
  );
}