1 views_handler_argument.inc views_handler_argument::process_summary_arguments(&$args)

Process the summary arguments for display.

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

File

core/modules/views/handlers/views_handler_argument.inc, line 814
@todo.

Class

views_handler_argument
Base class for arguments.

Code

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);
    }
  }
}