Issue #2003508 by RayCascella, jeroen12345: Rename Views method group_multiple_exposed_input() to groupMultipleExposedInput().
parent
3cd8e6d0e2
commit
686a2ef6b1
|
@ -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']]);
|
||||
}
|
||||
|
|
|
@ -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.
|
||||
|
|
Loading…
Reference in New Issue