public function String::summaryArgument

Provide the argument to use to link from the summary to the next level; this will be called once per row of a summary, and used as part of $view->getUrl().

Parameters

$data: The query results for the row.

Overrides ArgumentPluginBase::summaryArgument

File

drupal/core/modules/views/lib/Drupal/views/Plugin/views/argument/String.php, line 244
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 summaryArgument($data) {
  $value = $this
    ->caseTransform($data->{$this->base_alias}, $this->options['path_case']);
  if (!empty($this->options['transform_dash'])) {
    $value = strtr($value, ' ', '-');
  }
  return $value;
}