From 6278ce451f8f8994465dba4acfbec4e29ba3e26f Mon Sep 17 00:00:00 2001 From: Andrew Davis Date: Mon, 5 Dec 2011 14:57:36 +0800 Subject: [PATCH] MDL-28710 rating: added some more classes to the html for entering ratings --- lib/outputrenderers.php | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/lib/outputrenderers.php b/lib/outputrenderers.php index a236aef11d9..7288f57cfa8 100644 --- a/lib/outputrenderers.php +++ b/lib/outputrenderers.php @@ -1469,14 +1469,13 @@ class core_renderer extends renderer_base { $aggregatelabel = $ratingmanager->get_aggregate_label($rating->settings->aggregationmethod); $aggregatestr = $rating->get_aggregate_string(); - $aggregatehtml = html_writer::tag('span', $aggregatestr, array('id' => 'ratingaggregate'.$rating->itemid)).' '; - $aggregatehtml .= html_writer::start_tag('span', array('id'=>"ratingcount{$rating->itemid}")); + $aggregatehtml = html_writer::tag('span', $aggregatestr, array('id' => 'ratingaggregate'.$rating->itemid, 'class' => 'ratingaggregate')).' '; if ($rating->count > 0) { - $aggregatehtml .= "({$rating->count})"; + $countstr = "({$rating->count})"; } else { - $aggregatehtml .= '-'; + $countstr = '-'; } - $aggregatehtml .= html_writer::end_tag('span').' '; + $aggregatehtml .= html_writer::tag('span', $countstr, array('id'=>"ratingcount{$rating->itemid}", 'class' => 'ratingcount')).' '; $ratinghtml .= html_writer::tag('span', $aggregatelabel, array('class'=>'rating-aggregate-label')); if ($rating->settings->permissions->viewall && $rating->settings->pluginpermissions->viewall) {