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 e0dd2d5..45168ea 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 @@ -175,7 +175,7 @@ public function canExpose() { return TRUE; } * Determine if a filter can be converted into a group. * Only exposed filters with operators available can be converted into groups. */ - function can_build_group() { + function canBuildGroup() { return $this->isExposed() && (count($this->operator_options()) > 0); } @@ -197,14 +197,14 @@ public function buildOptionsForm(&$form, &$form_state) { if ($this->canExpose()) { $this->showExposeButton($form, $form_state); } - if ($this->can_build_group()) { + if ($this->canBuildBroup()) { $this->show_build_group_button($form, $form_state); } $form['clear_markup_start'] = array( '#markup' => '
', ); if ($this->isAGroup()) { - if ($this->can_build_group()) { + if ($this->canBuildGroup()) { $form['clear_markup_start'] = array( '#markup' => '
', );