function views_handler_argument::process_summary_arguments

Process the summary arguments for display.

For example, the validation plugin may want to alter an argument for use in the URL.

File

handlers/views_handler_argument.inc, line 849

Class

views_handler_argument
Base class for arguments.

Code

public function process_summary_arguments(&$args) {
    if ($this->options['validate']['type'] != 'none') {
        if (isset($this->validator) || ($this->validator = $this->get_plugin('argument validator'))) {
            $this->validator
                ->process_summary_arguments($args);
        }
    }
}