function String::summary_argument in Views (for Drupal 7) 8.3
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::summary_argument
File
- lib/
Drupal/ views/ Plugin/ views/ argument/ String.php, line 241 - 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\argumentCode
function summary_argument($data) {
$value = $this
->caseTransform($data->{$this->base_alias}, $this->options['path_case']);
if (!empty($this->options['transform_dash'])) {
$value = strtr($value, ' ', '-');
}
return $value;
}