File: rate.php

package info (click to toggle)
moodle 1.6.3-2%2Betch3
  • links: PTS
  • area: main
  • in suites: etch
  • size: 37,172 kB
  • ctags: 51,688
  • sloc: php: 231,916; sql: 5,631; xml: 2,688; sh: 1,185; perl: 638; makefile: 48; pascal: 36
file content (56 lines) | stat: -rwxr-xr-x 1,864 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<?php  // $Id: rate.php,v 1.7 2006/04/19 19:42:47 skodak Exp $
    require_once("../../config.php");
    require_once("lib.php");

    $id = required_param('id',PARAM_INT);  // The course these ratings are part of

    if (! $course = get_record("course", "id", $id)) {
        error("Course ID was incorrect");
    }

    require_login($course->id);

    if (isguest()) {
        error("Guests are not allowed to rate posts.", $_SERVER["HTTP_REFERER"]);
    }

    $CFG->debug = 0;    /// Temporarily

    $returntoview = false;

    if (($data = data_submitted($CFG->wwwroot.'/mod/data/view.php')) and confirm_sesskey()) {

        $lastrecordid = 0;

        foreach ((array)$data as $recordid => $rating) {
            if (($recordid == 'id') || ($recordid=='sesskey')) {
                continue;
            }

            $recordid = (int)$recordid;
            $lastrecordid = $recordid;
            if ($oldrating = get_record("data_ratings", "userid", $USER->id, "recordid", $recordid)) {
                if ($rating != $oldrating->rating) {
                    $oldrating->rating = $rating;
                    if (! update_record("data_ratings", $oldrating)) {
                        error("Could not update an old rating ($recordid = $rating)");
                    }
                }
            } else if ($rating) {
                unset($newrating);
                $newrating->userid = $USER->id;
                $newrating->recordid = $recordid;
                $newrating->rating = $rating;
                if (! insert_record("data_ratings", $newrating)) {
                    error("Could not insert a new rating ($recordid = $rating)");
                }
            }
        }

        redirect($_SERVER["HTTP_REFERER"], get_string("ratingssaved", "data"));
    } else {
        error("This page was not accessed correctly");
    }


?>