Skip to content
Snippets Groups Projects
Commit 2cde13be authored by Alex Pott's avatar Alex Pott
Browse files

Issue #2002354 by IshaDakota, Dan Reinders, jeroen12345: Rename Views method...

Issue #2002354 by IshaDakota, Dan Reinders, jeroen12345: Rename Views method aggregation_method_simple() to aggregationMethodSimple().
parent 9853507a
No related branches found
No related tags found
2 merge requests!7452Issue #1797438. HTML5 validation is preventing form submit and not fully...,!789Issue #3210310: Adjust Database API to remove deprecated Drupal 9 code in Drupal 10
......@@ -1659,7 +1659,7 @@ public function getAggregationInfo() {
),
'count' => array(
'title' => t('Count'),
'method' => 'aggregation_method_simple',
'method' => 'aggregationMethodSimple',
'handler' => array(
'argument' => 'groupby_numeric',
'field' => 'numeric',
......@@ -1679,7 +1679,7 @@ public function getAggregationInfo() {
),
'sum' => array(
'title' => t('Sum'),
'method' => 'aggregation_method_simple',
'method' => 'aggregationMethodSimple',
'handler' => array(
'argument' => 'groupby_numeric',
'field' => 'numeric',
......@@ -1689,7 +1689,7 @@ public function getAggregationInfo() {
),
'avg' => array(
'title' => t('Average'),
'method' => 'aggregation_method_simple',
'method' => 'aggregationMethodSimple',
'handler' => array(
'argument' => 'groupby_numeric',
'field' => 'numeric',
......@@ -1699,7 +1699,7 @@ public function getAggregationInfo() {
),
'min' => array(
'title' => t('Minimum'),
'method' => 'aggregation_method_simple',
'method' => 'aggregationMethodSimple',
'handler' => array(
'argument' => 'groupby_numeric',
'field' => 'numeric',
......@@ -1709,7 +1709,7 @@ public function getAggregationInfo() {
),
'max' => array(
'title' => t('Maximum'),
'method' => 'aggregation_method_simple',
'method' => 'aggregationMethodSimple',
'handler' => array(
'argument' => 'groupby_numeric',
'field' => 'numeric',
......@@ -1719,7 +1719,7 @@ public function getAggregationInfo() {
),
'stddev_pop' => array(
'title' => t('Standard deviation'),
'method' => 'aggregation_method_simple',
'method' => 'aggregationMethodSimple',
'handler' => array(
'argument' => 'groupby_numeric',
'field' => 'numeric',
......@@ -1730,7 +1730,7 @@ public function getAggregationInfo() {
);
}
function aggregation_method_simple($group_type, $field) {
public function aggregationMethodSimple($group_type, $field) {
return strtoupper($group_type) . '(' . $field . ')';
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment