commit 1e8316d2f268944be3e4a1d9e5febdb2ff09271c Author: Ivan Boothe Date: Fri May 24 16:00:38 2013 -0700 2002426-new-changes diff --git a/core/modules/field/lib/Drupal/field/Plugin/views/field/Field.php b/core/modules/field/lib/Drupal/field/Plugin/views/field/Field.php index 06be116..c3f0c0d 100644 --- a/core/modules/field/lib/Drupal/field/Plugin/views/field/Field.php +++ b/core/modules/field/lib/Drupal/field/Plugin/views/field/Field.php @@ -223,7 +223,7 @@ function add_field_table($use_groupby) { /** * Determine if this field is click sortable. */ - function clickSortable() { + public function clickSortable() { // Not click sortable in any case. if (empty($this->definition['click sortable'])) { return FALSE; diff --git a/core/modules/translation_entity/lib/Drupal/translation_entity/Plugin/views/field/TranslationLink.php b/core/modules/translation_entity/lib/Drupal/translation_entity/Plugin/views/field/TranslationLink.php index 9c67bfe..2050e5e 100644 --- a/core/modules/translation_entity/lib/Drupal/translation_entity/Plugin/views/field/TranslationLink.php +++ b/core/modules/translation_entity/lib/Drupal/translation_entity/Plugin/views/field/TranslationLink.php @@ -78,7 +78,7 @@ public function query() { } /** - * Overrides \Drupal\views\Plugin\views\Plugin\field\FieldPluginBase::click_sortable(). + * Overrides \Drupal\views\Plugin\views\Plugin\field\FieldPluginBase::clickSortable(). */ public function clickSortable() { return FALSE; diff --git a/core/modules/views/lib/Drupal/views/Plugin/views/field/FieldPluginBase.php b/core/modules/views/lib/Drupal/views/Plugin/views/field/FieldPluginBase.php index cba08d0..5bc3015 100644 --- a/core/modules/views/lib/Drupal/views/Plugin/views/field/FieldPluginBase.php +++ b/core/modules/views/lib/Drupal/views/Plugin/views/field/FieldPluginBase.php @@ -181,7 +181,7 @@ function click_sort($order) { * The value of 'click sortable' from the plugin definition, this defaults * to TRUE if not set. */ - function clickSortable() { + public function clickSortable() { return isset($this->definition['click sortable']) ? $this->definition['click sortable'] : TRUE; }