You are here

public function views_handler_argument::process_summary_arguments in Views (for Drupal 7) 7.3

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 848
Definition of views_handler_argument.

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