From 9b64d30af88d4080d7b894f827a94157080df7ce Mon Sep 17 00:00:00 2001 From: Alex Pott Date: Wed, 29 May 2013 07:07:45 +0100 Subject: [PATCH] Issue #2003316 by toddtomlinson, mari3.14: Rename Views method retrieve_validated_view() to retrieveValidatedView(). --- .../lib/Drupal/views/Plugin/views/wizard/WizardPluginBase.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 fae70127820..d6eb838e72c 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 @@ -1118,7 +1118,7 @@ abstract class WizardPluginBase extends PluginBase implements WizardInterface { * @return Drupal\views_ui\ViewUI $view * The validated view object. */ - protected function retrieve_validated_view(array $form, array &$form_state, $unset = TRUE) { + protected function retrieveValidatedView(array $form, array &$form_state, $unset = TRUE) { // @todo Figure out why all this hashing is done. Wouldn't it be easier to // store a single entry and that's it? $key = hash('sha256', serialize($form_state['values'])); @@ -1164,7 +1164,7 @@ abstract class WizardPluginBase extends PluginBase implements WizardInterface { * Implements Drupal\views\Plugin\views\wizard\WizardInterface::create_view(). */ function create_view(array $form, array &$form_state) { - $view = $this->retrieve_validated_view($form, $form_state); + $view = $this->retrieveValidatedView($form, $form_state); if (empty($view)) { throw new WizardException('Attempted to create_view with values that have not been validated.'); }