Merge branch 'MDL-27852' of git://github.com/timhunt/moodle
[moodle.git] / notes / index.php
bloba9d9d92e001b7cbdc575e862127ad6ca4e83fcd9
1 <?php
3 /**
4 * file index.php
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
8 */
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 $url = new moodle_url('/notes/index.php');
19 if ($courseid != SITEID) {
20 $url->param('course', $courseid);
22 if ($userid !== 0) {
23 $url->param('user', $userid);
25 $PAGE->set_url($url);
27 /// tabs compatibility
28 switch($filtertype) {
29 case 'course':
30 $courseid = $filterselect;
31 break;
32 case 'site':
33 $courseid = SITEID;
34 break;
37 if (empty($courseid)) {
38 $courseid = SITEID;
41 /// locate course information
42 $course = $DB->get_record('course', array('id'=>$courseid), '*', MUST_EXIST);
44 /// locate user information
45 if ($userid) {
46 $user = $DB->get_record('user', array('id'=>$userid), '*', MUST_EXIST);
47 $filtertype = 'user';
48 $filterselect = $user->id;
50 if ($user->deleted) {
51 echo $OUTPUT->header();
52 echo $OUTPUT->heading(get_string('userdeleted'));
53 echo $OUTPUT->footer();
54 die;
57 } else {
58 $filtertype = 'course';
59 $filterselect = $course->id;
62 /// require login to access notes
63 require_login($course);
64 add_to_log($courseid, 'notes', 'view', 'index.php?course='.$courseid.'&amp;user='.$userid, 'view notes');
66 if (empty($CFG->enablenotes)) {
67 print_error('notesdisabled', 'notes');
70 /// output HTML
71 if ($course->id == SITEID) {
72 $coursecontext = get_context_instance(CONTEXT_SYSTEM); // SYSTEM context
73 } else {
74 $coursecontext = get_context_instance(CONTEXT_COURSE, $course->id); // Course context
76 $systemcontext = get_context_instance(CONTEXT_SYSTEM); // SYSTEM context
78 $strnotes = get_string('notes', 'notes');
79 if ($userid) {
80 $PAGE->set_context(get_context_instance(CONTEXT_USER, $user->id));
81 $PAGE->navigation->extend_for_user($user);
82 } else {
83 $link = null;
84 if (has_capability('moodle/course:viewparticipants', $coursecontext) || has_capability('moodle/site:viewparticipants', $systemcontext)) {
85 $link = new moodle_url('/user/index.php',array('id'=>$course->id));
87 $PAGE->navbar->add(get_string('participants'), $link);
88 $PAGE->navbar->add($strnotes);
91 $PAGE->set_pagelayout('course');
92 $PAGE->set_title($course->shortname . ': ' . $strnotes);
93 $PAGE->set_heading($course->fullname);
95 echo $OUTPUT->header();
96 if ($userid) {
97 echo $OUTPUT->heading(fullname($user).': '.$strnotes);
98 } else {
99 echo $OUTPUT->heading($course->shortname.': '.$strnotes);
102 $strsitenotes = get_string('sitenotes', 'notes');
103 $strcoursenotes = get_string('coursenotes', 'notes');
104 $strpersonalnotes = get_string('personalnotes', 'notes');
105 $straddnewnote = get_string('addnewnote', 'notes');
107 echo $OUTPUT->box_start();
109 if ($courseid != SITEID) {
110 //echo '<a href="#sitenotes">' . $strsitenotes . '</a> | <a href="#coursenotes">' . $strcoursenotes . '</a> | <a href="#personalnotes">' . $strpersonalnotes . '</a>';
111 $context = get_context_instance(CONTEXT_COURSE, $courseid);
112 $addid = has_capability('moodle/notes:manage', $context) ? $courseid : 0;
113 $view = has_capability('moodle/notes:view', $context);
114 note_print_notes('<a name="sitenotes"></a>' . $strsitenotes, $addid, $view, 0, $userid, NOTES_STATE_SITE, 0);
115 note_print_notes('<a name="coursenotes"></a>' . $strcoursenotes. ' ('.$course->fullname.')', $addid, $view, $courseid, $userid, NOTES_STATE_PUBLIC, 0);
116 note_print_notes('<a name="personalnotes"></a>' . $strpersonalnotes, $addid, $view, $courseid, $userid, NOTES_STATE_DRAFT, $USER->id);
118 } else { // Normal course
119 //echo '<a href="#sitenotes">' . $strsitenotes . '</a> | <a href="#coursenotes">' . $strcoursenotes . '</a>';
120 $view = has_capability('moodle/notes:view', get_context_instance(CONTEXT_SYSTEM));
121 note_print_notes('<a name="sitenotes"></a>' . $strsitenotes, 0, $view, 0, $userid, NOTES_STATE_SITE, 0);
122 echo '<a name="coursenotes"></a>';
124 if (!empty($userid)) {
125 $courses = enrol_get_users_courses($userid);
126 foreach($courses as $c) {
127 $header = '<a href="' . $CFG->wwwroot . '/course/view.php?id=' . $c->id . '">' . $c->fullname . '</a>';
128 if (has_capability('moodle/notes:manage', get_context_instance(CONTEXT_COURSE, $c->id))) {
129 $addid = $c->id;
130 } else {
131 $addid = 0;
133 note_print_notes($header, $addid, $view, $c->id, $userid, NOTES_STATE_PUBLIC, 0);
138 echo $OUTPUT->box_end();
140 echo $OUTPUT->footer();