5 * index page to view notes.
6 * if a course id is specified then the entries from that course are shown
7 * if a user id is specified only notes related to that user are shown
9 require_once('../config.php');
10 require_once('lib.php');
12 /// retrieve parameters
13 $courseid = optional_param('course', SITEID
, PARAM_INT
);
14 $userid = optional_param('user', 0, PARAM_INT
);
15 $filtertype = optional_param('filtertype', '', PARAM_ALPHA
);
16 $filterselect = optional_param('filterselect', 0, PARAM_INT
);
18 /// tabs compatibility
21 $courseid = $filterselect;
28 /// locate course information
29 if (!$course = get_record('course', 'id', $courseid)) {
30 error('Incorrect course id specified');
33 /// locate user information
35 if (!$user = get_record('user', 'id', $userid)) {
36 error('Incorrect user id specified');
39 $filterselect = $user->id
;
41 $filtertype = 'course';
42 $filterselect = $course->id
;
45 /// require login to access notes
46 require_login($course->id
);
47 add_to_log($courseid, 'notes', 'view', 'index.php?course='.$courseid.'&user='.$userid, 'view notes');
52 $strnotes = get_string('notes', 'notes');
54 $nav[] = array('name' => get_string('participants'), 'link' => $CFG->wwwroot
. '/user/index.php?id=' . $course->id
, 'type' => 'misc');
56 $nav[] = array('name' => fullname($user), 'link' => $CFG->wwwroot
. '/user/view.php?id=' . $user->id
. '&course=' . $course->id
, 'type' => 'misc');
58 $nav[] = array('name' => $strnotes, 'link' => '', 'type' => 'misc');
60 print_header($course->shortname
. ': ' . $strnotes, $course->fullname
, build_navigation($nav));
62 $currenttab = 'notes';
63 require_once($CFG->dirroot
.'/user/tabs.php');
65 $strsitenotes = get_string('sitenotes', 'notes');
66 $strcoursenotes = get_string('coursenotes', 'notes');
67 $strpersonalnotes = get_string('personalnotes', 'notes');
68 $straddnewnote = get_string('addnewnote', 'notes');
72 if ($courseid != SITEID
) {
73 //echo '<a href="#sitenotes">' . $strsitenotes . '</a> | <a href="#coursenotes">' . $strcoursenotes . '</a> | <a href="#personalnotes">' . $strpersonalnotes . '</a>';
74 $context = get_context_instance(CONTEXT_COURSE
, $courseid);
75 $addid = has_capability('moodle/notes:manage', $context) ?
$courseid : 0;
76 $view = has_capability('moodle/notes:view', $context);
77 note_print_notes('<a name="sitenotes"></a>' . $strsitenotes, $addid, $view, 0, $userid, NOTES_STATE_SITE
, 0);
78 note_print_notes('<a name="coursenotes"></a>' . $strcoursenotes. ' ('.$course->fullname
.')', $addid, $view, $courseid, $userid, NOTES_STATE_PUBLIC
, 0);
79 note_print_notes('<a name="personalnotes"></a>' . $strpersonalnotes, $addid, $view, $courseid, $userid, NOTES_STATE_DRAFT
, $USER->id
);
81 } else { // Normal course
82 //echo '<a href="#sitenotes">' . $strsitenotes . '</a> | <a href="#coursenotes">' . $strcoursenotes . '</a>';
83 $view = has_capability('moodle/notes:view', get_context_instance(CONTEXT_SYSTEM
));
84 note_print_notes('<a name="sitenotes"></a>' . $strsitenotes, 0, $view, 0, $userid, NOTES_STATE_SITE
, 0);
85 echo '<a name="coursenotes"></a>';
87 if (!empty($userid)) {
88 $courses = get_my_courses($userid);
89 foreach($courses as $c) {
90 $header = '<a href="' . $CFG->wwwroot
. '/course/view.php?id=' . $c->id
. '">' . $c->fullname
. '</a>';
91 if (has_capability('moodle/notes:manage', get_context_instance(CONTEXT_COURSE
, $c->id
))) {
96 note_print_notes($header, $addid, $view, $c->id
, $userid, NOTES_STATE_PUBLIC
, 0);
103 print_footer($course);