From acd9be1b062870b2db44e4edd143eafdfc176987 Mon Sep 17 00:00:00 2001 From: Alex Pott Date: Tue, 28 May 2013 21:35:40 +0100 Subject: [PATCH] Issue #2003258 by markie: Rename Views show_sort_form() to showSortForm(). --- .../lib/Drupal/views/Plugin/views/sort/SortPluginBase.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/modules/views/lib/Drupal/views/Plugin/views/sort/SortPluginBase.php b/core/modules/views/lib/Drupal/views/Plugin/views/sort/SortPluginBase.php index af4f8979f8b..061946eea66 100644 --- a/core/modules/views/lib/Drupal/views/Plugin/views/sort/SortPluginBase.php +++ b/core/modules/views/lib/Drupal/views/Plugin/views/sort/SortPluginBase.php @@ -79,7 +79,7 @@ abstract class SortPluginBase extends HandlerBase { $this->showExposeButton($form, $form_state); } $form['op_val_start'] = array('#value' => '
'); - $this->show_sort_form($form, $form_state); + $this->showSortForm($form, $form_state); $form['op_val_end'] = array('#value' => '
'); if ($this->canExpose()) { $this->showExposeForm($form, $form_state); @@ -160,7 +160,7 @@ abstract class SortPluginBase extends HandlerBase { /** * Shortcut to display the value form. */ - function show_sort_form(&$form, &$form_state) { + function showSortForm(&$form, &$form_state) { $options = $this->sort_options(); if (!empty($options)) { $form['order'] = array(