Issue #2003508 by RayCascella, jeroen12345: Rename Views method group_multiple_exposed_input() to groupMultipleExposedInput().

8.0.x
Alex Pott 2013-05-29 12:22:18 +01:00
parent 3cd8e6d0e2
commit 686a2ef6b1
2 changed files with 2 additions and 2 deletions

View File

@ -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']]);
}

View File

@ -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.