From 686a2ef6b108a34c523955fd77f08c0ee51fa560 Mon Sep 17 00:00:00 2001 From: Alex Pott Date: Wed, 29 May 2013 12:22:18 +0100 Subject: [PATCH] Issue #2003508 by RayCascella, jeroen12345: Rename Views method group_multiple_exposed_input() to groupMultipleExposedInput(). --- .../lib/Drupal/views/Plugin/views/filter/FilterPluginBase.php | 2 +- core/modules/views/lib/Drupal/views/ViewExecutable.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/core/modules/views/lib/Drupal/views/Plugin/views/filter/FilterPluginBase.php b/core/modules/views/lib/Drupal/views/Plugin/views/filter/FilterPluginBase.php index 2ea3336d9344..c906877dc7a8 100644 --- a/core/modules/views/lib/Drupal/views/Plugin/views/filter/FilterPluginBase.php +++ b/core/modules/views/lib/Drupal/views/Plugin/views/filter/FilterPluginBase.php @@ -1252,7 +1252,7 @@ abstract class FilterPluginBase extends HandlerBase { * as widget, and therefore has to be applied several times, one per * item selected. */ - function group_multiple_exposed_input(&$input) { + public function groupMultipleExposedInput(&$input) { if (!empty($input[$this->options['group_info']['identifier']])) { return array_filter($input[$this->options['group_info']['identifier']]); } diff --git a/core/modules/views/lib/Drupal/views/ViewExecutable.php b/core/modules/views/lib/Drupal/views/ViewExecutable.php index dbb0cb9d0100..18471d581e19 100644 --- a/core/modules/views/lib/Drupal/views/ViewExecutable.php +++ b/core/modules/views/lib/Drupal/views/ViewExecutable.php @@ -1111,7 +1111,7 @@ class ViewExecutable { if (!empty($handlers[$id]) && is_object($handlers[$id])) { $multiple_exposed_input = array(0 => NULL); if ($handlers[$id]->multipleExposedInput()) { - $multiple_exposed_input = $handlers[$id]->group_multiple_exposed_input($this->exposed_data); + $multiple_exposed_input = $handlers[$id]->groupMultipleExposedInput($this->exposed_data); } foreach ($multiple_exposed_input as $group_id) { // Give this handler access to the exposed filter input.