mirror of
https://github.com/moodle/moodle.git
synced 2025-02-08 17:11:49 +01:00
115 lines
3.9 KiB
PHP
115 lines
3.9 KiB
PHP
<?php
|
|
|
|
// This file is part of Moodle - http://moodle.org/
|
|
//
|
|
// Moodle is free software: you can redistribute it and/or modify
|
|
// it under the terms of the GNU General Public License as published by
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
// (at your option) any later version.
|
|
//
|
|
// Moodle is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
// GNU General Public License for more details.
|
|
//
|
|
// You should have received a copy of the GNU General Public License
|
|
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
/**
|
|
* For a given post, shows a report of all the ratings it has
|
|
*
|
|
* @package mod-forum
|
|
* @copyright 1999 onwards Martin Dougiamas {@link http://moodle.com}
|
|
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
|
*/
|
|
|
|
require_once("../../config.php");
|
|
require_once("lib.php");
|
|
|
|
$id = required_param('id', PARAM_INT);
|
|
$sort = optional_param('sort', '', PARAM_ALPHA);
|
|
|
|
$url = new moodle_url('/mod/forum/report.php', array('id'=>$id));
|
|
if ($sort !== 0) {
|
|
$url->param('sort', $sort);
|
|
}
|
|
$PAGE->set_url($url);
|
|
|
|
if (! $post = $DB->get_record('forum_posts', array('id' => $id))) {
|
|
print_error('invalidpostid','forum');
|
|
}
|
|
|
|
if (! $discussion = $DB->get_record('forum_discussions', array('id' => $post->discussion))) {
|
|
print_error('invaliddiscussion', 'forum');
|
|
}
|
|
|
|
if (! $forum = $DB->get_record('forum', array('id' => $discussion->forum))) {
|
|
print_error('invalidforumid', 'forum');
|
|
}
|
|
|
|
if (! $course = $DB->get_record('course', array('id' => $forum->course))) {
|
|
print_error('invalidcourseid');
|
|
}
|
|
|
|
if (! $cm = get_coursemodule_from_instance('forum', $forum->id, $course->id)) {
|
|
print_error('invalidcoursemodule');
|
|
}
|
|
|
|
require_login($course, false, $cm);
|
|
$context = get_context_instance(CONTEXT_MODULE, $cm->id);
|
|
|
|
if (!$forum->assessed) {
|
|
print_error('norate', 'forum');
|
|
}
|
|
|
|
if (!has_capability('mod/forum:viewrating', $context)) {
|
|
print_error('noviewrate', 'forum');
|
|
}
|
|
if (!has_capability('mod/forum:viewanyrating', $context) and $USER->id != $post->userid) {
|
|
print_error('noviewanyrate', 'forum');
|
|
}
|
|
|
|
switch ($sort) {
|
|
case 'firstname': $sqlsort = "u.firstname ASC"; break;
|
|
case 'rating': $sqlsort = "r.rating ASC"; break;
|
|
default: $sqlsort = "r.time ASC";
|
|
}
|
|
|
|
$scalemenu = make_grades_menu($forum->scale);
|
|
|
|
$strratings = get_string('ratings', 'forum');
|
|
$strrating = get_string('rating', 'forum');
|
|
$strname = get_string('name');
|
|
$strtime = get_string('time');
|
|
|
|
$PAGE->set_title("$strratings: ".format_string($post->subject));
|
|
echo $OUTPUT->header();
|
|
|
|
if (!$ratings = forum_get_ratings($post->id, $sqlsort)) {
|
|
print_error('noresult', 'forum', '', format_string($post->subject));
|
|
|
|
} else {
|
|
echo "<table border=\"0\" cellpadding=\"3\" cellspacing=\"3\" class=\"generalbox\" style=\"width:100%\">";
|
|
echo "<tr>";
|
|
echo "<th class=\"header\" scope=\"col\"> </th>";
|
|
echo "<th class=\"header\" scope=\"col\"><a href=\"report.php?id=$post->id&sort=firstname\">$strname</a></th>";
|
|
echo "<th class=\"header\" scope=\"col\" style=\"width:100%\"><a href=\"report.php?id=$post->id&sort=rating\">$strrating</a></th>";
|
|
echo "<th class=\"header\" scope=\"col\"><a href=\"report.php?id=$post->id&sort=time\">$strtime</a></th>";
|
|
echo "</tr>";
|
|
foreach ($ratings as $rating) {
|
|
echo '<tr class="forumpostheader">';
|
|
echo "<td>";
|
|
echo $OUTPUT->user_picture($rating, array('courseid'=>$forum->course));
|
|
echo '</td><td>'.fullname($rating).'</td>';
|
|
echo '<td style="white-space:nowrap" align="center" class="rating">'.$scalemenu[$rating->rating]."</td>";
|
|
echo '<td style="white-space:nowrap" align="center" class="time">'.userdate($rating->time)."</td>";
|
|
echo "</tr>\n";
|
|
}
|
|
echo "</table>";
|
|
echo "<br />";
|
|
}
|
|
|
|
echo $OUTPUT->close_window_button();
|
|
echo $OUTPUT->footer();
|
|
|