From: jamiesensei Date: Mon, 16 Jun 2008 16:19:07 +0000 (+0000) Subject: MDL-15268 "Content for Quiz Statistics report table" little bit of css styling of... X-Git-Url: http://git.mjollnir.org/gw?a=commitdiff_plain;h=74af927e51590c86e65e08096e6782917bc305f0;p=moodle.git MDL-15268 "Content for Quiz Statistics report table" little bit of css styling of columns --- 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');