You are here

public function ArgumentValidatorPluginBase::processSummaryArguments in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/views/src/Plugin/views/argument_validator/ArgumentValidatorPluginBase.php \Drupal\views\Plugin\views\argument_validator\ArgumentValidatorPluginBase::processSummaryArguments()

Processes the summary arguments for displaying.

Some plugins alter the argument so it uses something else internally. For example the user validation set's the argument to the uid, for a faster query. But there are use cases where you want to use the old value again, for example the summary.

1 method overrides ArgumentValidatorPluginBase::processSummaryArguments()
UserName::processSummaryArguments in core/modules/user/src/Plugin/views/argument_validator/UserName.php
Processes the summary arguments for displaying.

File

core/modules/views/src/Plugin/views/argument_validator/ArgumentValidatorPluginBase.php, line 111

Class

ArgumentValidatorPluginBase
Base argument validator plugin to provide basic functionality.

Namespace

Drupal\views\Plugin\views\argument_validator

Code

public function processSummaryArguments(&$args) {
}