function ArgumentValidatorPluginBase::process_summary_arguments in Views (for Drupal 7) 8.3
Process the summary arguments for displaying.
Some plugins alter the argument so it uses something else interal. 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.
2 methods override ArgumentValidatorPluginBase::process_summary_arguments()
- Term::process_summary_arguments in lib/
Views/ taxonomy/ Plugin/ views/ argument_validator/ Term.php - Process the summary arguments for displaying.
- User::process_summary_arguments in lib/
Views/ user/ Plugin/ views/ argument_validator/ User.php - Process the summary arguments for displaying.
File
- lib/
Drupal/ views/ Plugin/ views/ argument_validator/ ArgumentValidatorPluginBase.php, line 87 - Definition of Drupal\views\Plugin\views\argument_validator\ArgumentValidatorPluginBase.
Class
- ArgumentValidatorPluginBase
- Base argument validator plugin to provide basic functionality.
Namespace
Drupal\views\Plugin\views\argument_validatorCode
function process_summary_arguments(&$args) {
}