Skip to content

Commit

Permalink
MDL-70795 reportbuilder: editor elements to set column aggregation.
Browse files Browse the repository at this point in the history
Aggregation of report columns allows the report editor to perform
common types of data aggregation (concatenation, sum, count, etc)
on given columns.
  • Loading branch information
paulholden committed Oct 19, 2021
1 parent db7102e commit f47e89a
Show file tree
Hide file tree
Showing 30 changed files with 1,812 additions and 21 deletions.
13 changes: 13 additions & 0 deletions lang/en/reportbuilder.php
Expand Up @@ -24,7 +24,20 @@

$string['actions'] = 'Actions';
$string['addcolumn'] = 'Add column \'{$a}\'';
$string['aggregatecolumn'] = 'Aggregate column \'{$a}\'';
$string['aggregationavg'] = 'Average';
$string['aggregationcount'] = 'Count';
$string['aggregationcountdistinct'] = 'Count distinct';
$string['aggregationgroupconcat'] = 'Comma separated values';
$string['aggregationgroupconcatdistinct'] = 'Comma separated distinct values';
$string['aggregationmax'] = 'Maximum';
$string['aggregationmin'] = 'Minimum';
$string['aggregationnone'] = 'No aggregation';
$string['aggregationpercent'] = 'Percentage';
$string['aggregationsum'] = 'Sum';
$string['apply'] = 'Apply';
$string['columnadded'] = 'Added column \'{$a}\'';
$string['columnaggregated'] = 'Aggregated column \'{$a}\'';
$string['columnsortdirectionasc'] = 'Sort column \'{$a}\' ascending';
$string['columnsortdirectiondesc'] = 'Sort column \'{$a}\' descending';
$string['columnsortdisable'] = 'Disable sorting for column \'{$a}\'';
Expand Down
2 changes: 1 addition & 1 deletion reportbuilder/amd/build/local/editor/columns.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit f47e89a

Please sign in to comment.