You are here

public function fieldable_panels_panes_handler_argument_bundle::summary_name in Fieldable Panels Panes (FPP) 7

Provides the name to use for the summary.

By default this is just the name field.

Parameters

object $data: The query results for the row.

Return value

string The summary.

Overrides views_handler_argument::summary_name

File

plugins/views/fieldable_panels_panes_handler_argument_bundle.inc, line 16
Provide views handler arguments for fieldable panel panes.

Class

fieldable_panels_panes_handler_argument_bundle
Argument handler to accept a node type.

Code

public function summary_name($data) {
  return fieldable_panels_panes_get_bundle_label($data->{$this->name_alias});
}