Process the summary arguments for display.
For example, the validation plugin may want to alter an argument for use in the URL.
public function processSummaryArguments(&$args) {
if ($this->options['validate']['type'] != 'none') {
if (isset($this->validator) || ($this->validator = $this
->getPlugin('argument_validator'))) {
$this->validator
->processSummaryArguments($args);
}
}
}