public function ArgumentPluginBase::processSummaryArguments

Process the summary arguments for display.

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

File

drupal/core/modules/views/lib/Drupal/views/Plugin/views/argument/ArgumentPluginBase.php, line 757
Definition of Drupal\views\Plugin\views\argument\ArgumentPluginBase.

Class

ArgumentPluginBase
Base class for arguments.

Namespace

Drupal\views\Plugin\views\argument

Code

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