diff --git a/core/modules/views/lib/Drupal/views/Plugin/views/argument/ArgumentPluginBase.php b/core/modules/views/lib/Drupal/views/Plugin/views/argument/ArgumentPluginBase.php index f864555d7352ce07eb725dd5620de4e8ab7dae64..40ccdc779c567a0a3b059fba15d7bbed2edab7f3 100644 --- a/core/modules/views/lib/Drupal/views/Plugin/views/argument/ArgumentPluginBase.php +++ b/core/modules/views/lib/Drupal/views/Plugin/views/argument/ArgumentPluginBase.php @@ -808,7 +808,7 @@ function summary_query() { // Add the field. $this->base_alias = $this->query->add_field($this->tableAlias, $this->realField); - $this->summary_name_field(); + $this->summaryNameField(); return $this->summaryBasics(); } @@ -816,7 +816,7 @@ function summary_query() { * Add the name field, which is the field displayed in summary queries. * This is often used when the argument is numeric. */ - function summary_name_field() { + protected function summaryNameField() { // Add the 'name' field. For example, if this is a uid argument, the // name field would be 'name' (i.e, the username). diff --git a/core/modules/views/lib/Drupal/views/Plugin/views/argument/ManyToOne.php b/core/modules/views/lib/Drupal/views/Plugin/views/argument/ManyToOne.php index 0f5a07e9ade42fa664d40069f1a06a2fbcf6c35a..6074790f30f0818fe5d8556fde44451ee6c8c9b1 100644 --- a/core/modules/views/lib/Drupal/views/Plugin/views/argument/ManyToOne.php +++ b/core/modules/views/lib/Drupal/views/Plugin/views/argument/ManyToOne.php @@ -179,7 +179,7 @@ function summary_query() { // Add the field. $this->base_alias = $this->query->add_field($this->tableAlias, $this->realField); - $this->summary_name_field(); + $this->summaryNameField(); return $this->summaryBasics(); } diff --git a/core/modules/views/lib/Drupal/views/Plugin/views/argument/String.php b/core/modules/views/lib/Drupal/views/Plugin/views/argument/String.php index ce22e1a6763ce7def83282332fda021ec0172d15..44bde0d54bb44068dfc9b7b29d34f6d1059c8e55 100644 --- a/core/modules/views/lib/Drupal/views/Plugin/views/argument/String.php +++ b/core/modules/views/lib/Drupal/views/Plugin/views/argument/String.php @@ -166,7 +166,7 @@ function summary_query() { $this->query->set_count_field(NULL, $formula, $this->field, $this->field . '_truncated'); } - $this->summary_name_field(); + $this->summaryNameField(); return $this->summaryBasics(FALSE); }