You are here

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

Render the field.

Parameters

array $values: The values retrieved from the database.

Overrides views_handler_field::render

File

plugins/views/fieldable_panels_panes_handler_field_view_revision.inc, line 76
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 render($values) {
  if ($entity = $this
    ->get_value($values)) {
    return $this
      ->render_link($entity, $values);
  }
}