You are here

public function fieldable_panels_panes_handler_field_view_revision::construct in Fieldable Panels Panes (FPP) 7

Construct a new field handler.

Overrides views_handler_field::construct

File

plugins/views/fieldable_panels_panes_handler_field_view_revision.inc, line 21
Provide views handlers for fieldable panel panes.

Class

fieldable_panels_panes_handler_field_view_revision
Field handler to present a link to the node.

Code

public function construct() {
  parent::construct();
  $this->real_field = 'fpid';
  $this->additional_fields = array(
    'vid',
  );
}