You are here

public function fieldable_panels_panes_handler_field_is_current::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_is_current.inc, line 21
Provide views handlers for fieldable panel panes.

Class

fieldable_panels_panes_handler_field_is_current
Field handler to display if the revision is current or not.

Code

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