diff --git a/core/modules/comment/lib/Drupal/comment/Plugin/views/wizard/Comment.php b/core/modules/comment/lib/Drupal/comment/Plugin/views/wizard/Comment.php index c45efbd..1053de4 100644 --- a/core/modules/comment/lib/Drupal/comment/Plugin/views/wizard/Comment.php +++ b/core/modules/comment/lib/Drupal/comment/Plugin/views/wizard/Comment.php @@ -113,8 +113,8 @@ protected function page_display_options(array $form, array &$form_state) { /** * Overrides Drupal\views\Plugin\views\wizard\WizardPluginBase::page_display_options(). */ - protected function block_display_options(array $form, array &$form_state) { - $display_options = parent::block_display_options($form, $form_state); + protected function blockDisplayOptions(array $form, array &$form_state) { + $display_options = parent::blockDisplayOptions($form, $form_state); $row_plugin = isset($form_state['values']['block']['style']['row_plugin']) ? $form_state['values']['block']['style']['row_plugin'] : NULL; $row_options = isset($form_state['values']['block']['style']['row_options']) ? $form_state['values']['block']['style']['row_options'] : array(); $this->display_options_row($display_options, $row_plugin, $row_options); diff --git a/core/modules/node/lib/Drupal/node/Plugin/views/wizard/Node.php b/core/modules/node/lib/Drupal/node/Plugin/views/wizard/Node.php index 644fbcf..e44dc34 100644 --- a/core/modules/node/lib/Drupal/node/Plugin/views/wizard/Node.php +++ b/core/modules/node/lib/Drupal/node/Plugin/views/wizard/Node.php @@ -205,8 +205,8 @@ protected function page_display_options(array $form, array &$form_state) { /** * Overrides Drupal\views\Plugin\views\wizard\WizardPluginBase::page_display_options(). */ - protected function block_display_options(array $form, array &$form_state) { - $display_options = parent::block_display_options($form, $form_state); + protected function blockDisplayOptions(array $form, array &$form_state) { + $display_options = parent::blockDisplayOptions($form, $form_state); $row_plugin = isset($form_state['values']['block']['style']['row_plugin']) ? $form_state['values']['block']['style']['row_plugin'] : NULL; $row_options = isset($form_state['values']['block']['style']['row_options']) ? $form_state['values']['block']['style']['row_options'] : array(); $this->display_options_row($display_options, $row_plugin, $row_options); diff --git a/core/modules/views/lib/Drupal/views/Plugin/views/wizard/WizardPluginBase.php b/core/modules/views/lib/Drupal/views/Plugin/views/wizard/WizardPluginBase.php index 3945ae0..22c86e8 100644 --- a/core/modules/views/lib/Drupal/views/Plugin/views/wizard/WizardPluginBase.php +++ b/core/modules/views/lib/Drupal/views/Plugin/views/wizard/WizardPluginBase.php @@ -671,7 +671,7 @@ protected function build_display_options($form, $form_state) { // Display: Block if (!empty($form_state['values']['block']['create'])) { - $display_options['block'] = $this->block_display_options($form, $form_state); + $display_options['block'] = $this->blockDisplayOptions($form, $form_state); } return $display_options; @@ -1000,7 +1000,7 @@ protected function page_display_options(array $form, array &$form_state) { * @return array * Returns an array of display options. */ - protected function block_display_options(array $form, array &$form_state) { + protected function blockDisplayOptions(array $form, array &$form_state) { $display_options = array(); $block = $form_state['values']['block']; $display_options['title'] = $block['title'];