From 74af927e51590c86e65e08096e6782917bc305f0 Mon Sep 17 00:00:00 2001 From: jamiesensei Date: Mon, 16 Jun 2008 16:19:07 +0000 Subject: [PATCH] MDL-15268 "Content for Quiz Statistics report table" little bit of css styling of columns --- mod/quiz/report/statistics/statistics_table.php | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/mod/quiz/report/statistics/statistics_table.php b/mod/quiz/report/statistics/statistics_table.php index 558b672a22..d567a2d1dc 100644 --- a/mod/quiz/report/statistics/statistics_table.php +++ b/mod/quiz/report/statistics/statistics_table.php @@ -55,6 +55,12 @@ class quiz_report_statistics_table extends flexible_table { $this->define_headers($headers); $this->sortable(false); + $this->column_class('s', 'numcol'); + $this->column_class('random_guess_score', 'numcol'); + $this->column_class('intended_weight', 'numcol'); + $this->column_class('sd', 'numcol'); + $this->column_class('facility', 'numcol'); + // Set up the table $this->define_baseurl($reporturl->out()); @@ -72,8 +78,6 @@ class quiz_report_statistics_table extends flexible_table { $this->column_class('fullname', 'bold'); $this->column_class('sumgrades', 'bold');*/ - $this->column_class('intended_weight', 'numcol'); - $this->column_class('random_guess_score', 'numcol'); $this->set_attribute('id', 'questionstatistics'); $this->set_attribute('class', 'generaltable generalbox boxaligncenter'); -- 2.39.5