public function String::summaryName

Provides the name to use for the summary. By default this is just the name field.

Parameters

$data: The query results for the row.

Overrides ArgumentPluginBase::summaryName

2 methods override String::summaryName()

File

drupal/core/modules/views/lib/Drupal/views/Plugin/views/argument/String.php, line 291
Definition of Drupal\views\Plugin\views\argument\String.

Class

String
Basic argument handler to implement string arguments that may have length limits.

Namespace

Drupal\views\Plugin\views\argument

Code

public function summaryName($data) {
  return $this
    ->caseTransform(parent::summaryName($data), $this->options['case']);
}