public function ArgumentValidatorPluginBase::processSummaryArguments in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/modules/views/src/Plugin/views/argument_validator/ArgumentValidatorPluginBase.php \Drupal\views\Plugin\views\argument_validator\ArgumentValidatorPluginBase::processSummaryArguments()
Process 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 - Process the summary arguments for displaying.
File
- core/
modules/ views/ src/ Plugin/ views/ argument_validator/ ArgumentValidatorPluginBase.php, line 109 - Contains \Drupal\views\Plugin\views\argument_validator\ArgumentValidatorPluginBase.
Class
- ArgumentValidatorPluginBase
- Base argument validator plugin to provide basic functionality.
Namespace
Drupal\views\Plugin\views\argument_validatorCode
public function processSummaryArguments(&$args) {
}