function views_handler_argument::process_summary_arguments
3.x 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
- handlers/
views_handler_argument.inc, line 783 - @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);
}
}
}