mirror of
https://github.com/moodle/moodle.git
synced 2025-02-13 12:34:28 +01:00
74 lines
2.5 KiB
PHP
Executable File
74 lines
2.5 KiB
PHP
Executable File
<?php // $Id$
|
|
|
|
// For a given post, shows a report of all the ratings it has
|
|
|
|
require_once("../../config.php");
|
|
require_once("lib.php");
|
|
|
|
$id = required_param('id',PARAM_INT);
|
|
$sort = optional_param('sort', '', PARAM_ALPHA);
|
|
|
|
if (!$record = get_record('data_records', 'id', $id)) {
|
|
error("Record ID is incorrect");
|
|
}
|
|
if (!$data = get_record('data', 'id', $record->dataid)) {
|
|
error("Data ID is incorrect");
|
|
}
|
|
if (!$course = get_record('course', 'id', $data->course)) {
|
|
error("Course is misconfigured");
|
|
}
|
|
if (!$cm = get_coursemodule_from_instance('data', $data->id, $course->id)) {
|
|
error("Course Module ID was incorrect");
|
|
}
|
|
|
|
require_login($course->id, false, $cm);
|
|
|
|
$context = get_context_instance(CONTEXT_MODULE, $cm->id);
|
|
|
|
if (!data_isowner($record->id) and !has_capability('mod/data:viewrating', $context) and !has_capability('mod/data:rate', $context)) {
|
|
error("You can not view ratings");
|
|
}
|
|
|
|
switch ($sort) {
|
|
case 'firstname': $sqlsort = "u.firstname ASC"; break;
|
|
case 'rating': $sqlsort = "r.rating ASC"; break;
|
|
default: $sqlsort = "r.id ASC";
|
|
}
|
|
|
|
$scalemenu = make_grades_menu($data->scale);
|
|
|
|
$strratings = get_string("ratings", "data");
|
|
$strrating = get_string("rating", "data");
|
|
$strname = get_string("name");
|
|
|
|
print_header($strratings);
|
|
|
|
if (!$ratings = data_get_ratings($record->id, $sqlsort)) {
|
|
error("No ratings for this record!");
|
|
|
|
} else {
|
|
echo "<table border=\"0\" cellpadding=\"3\" cellspacing=\"3\" class=\"generalbox\" width=\"100%\">";
|
|
echo "<tr>";
|
|
echo "<th scope=\"col\"> </th>";
|
|
echo "<th scope=\"col\"><a href=\"report.php?id=$id&sort=firstname\">$strname</a>";
|
|
echo "<th width=\"100%\" scope=\"col\"><a href=\"report.php?id=$id&sort=rating\">$strrating</a>";
|
|
foreach ($ratings as $rating) {
|
|
if (has_capability('mod/data:manageentries', $context)) {
|
|
echo '<tr class="forumpostheadertopic">';
|
|
} else {
|
|
echo '<tr class="forumpostheader">';
|
|
}
|
|
echo "<td>";
|
|
print_user_picture($rating->id, $data->course, $rating->picture);
|
|
echo '<td nowrap="nowrap"><p><font size="-1">'.fullname($rating).'</p>';
|
|
echo '<td nowrap="nowrap" align="center"><p><font size="-1">'.$scalemenu[$rating->rating]."</p>";
|
|
echo "</tr>\n";
|
|
}
|
|
echo "</table>";
|
|
echo "<br />";
|
|
}
|
|
|
|
close_window_button();
|
|
|
|
?>
|