You are here

public function StringArgument::summaryArgument in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/views/src/Plugin/views/argument/StringArgument.php \Drupal\views\Plugin\views\argument\StringArgument::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

core/modules/views/src/Plugin/views/argument/StringArgument.php, line 265

Class

StringArgument
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;
}