diff --git a/core/modules/views/lib/Drupal/views/Plugin/views/style/StylePluginBase.php b/core/modules/views/lib/Drupal/views/Plugin/views/style/StylePluginBase.php index 2fe7cfa..6c1402d 100644 --- a/core/modules/views/lib/Drupal/views/Plugin/views/style/StylePluginBase.php +++ b/core/modules/views/lib/Drupal/views/Plugin/views/style/StylePluginBase.php @@ -365,7 +365,7 @@ function wizard_form(&$form, &$form_state, $type) { * @param string $display_type * The display type, either block or page. */ - function wizard_submit(&$form, &$form_state, WizardInterface $wizard, &$display_options, $display_type) { + function wizardSubmit(&$form, &$form_state, WizardInterface $wizard, &$display_options, $display_type) { } /** diff --git a/core/modules/views/lib/Drupal/views/Plugin/views/style/Table.php b/core/modules/views/lib/Drupal/views/Plugin/views/style/Table.php index fa868c7..bb40c69 100644 --- a/core/modules/views/lib/Drupal/views/Plugin/views/style/Table.php +++ b/core/modules/views/lib/Drupal/views/Plugin/views/style/Table.php @@ -391,7 +391,7 @@ function even_empty() { return parent::even_empty() || !empty($this->options['empty_table']); } - function wizard_submit(&$form, &$form_state, WizardInterface $wizard, &$display_options, $display_type) { + function wizardSubmit(&$form, &$form_state, WizardInterface $wizard, &$display_options, $display_type) { // If any of the displays use the table style, take sure that the fields // always have a labels by unsetting the override. foreach ($display_options['default']['fields'] as &$field) { 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..3e97df6 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 @@ -684,7 +684,7 @@ protected function alter_display_options(&$display_options, $form, $form_state) foreach ($display_options as $display_type => $options) { // Allow style plugins to hook in and provide some settings. $style_plugin = Views::pluginManager('style')->createInstance($options['style']['type']); - $style_plugin->wizard_submit($form, $form_state, $this, $display_options, $display_type); + $style_plugin->wizardSubmit($form, $form_state, $this, $display_options, $display_type); } }