2 // This file is part of Moodle - http://moodle.org/
4 // Moodle is free software: you can redistribute it and/or modify
5 // it under the terms of the GNU General Public License as published by
6 // the Free Software Foundation, either version 3 of the License, or
7 // (at your option) any later version.
9 // Moodle is distributed in the hope that it will be useful,
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 // GNU General Public License for more details.
14 // You should have received a copy of the GNU General Public License
15 // along with Moodle. If not, see <http://www.gnu.org/licenses/>.
18 * A page displaying the user's contacts and messages
20 * @package core_message
21 * @copyright 2010 Andrew Davis
22 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
25 require_once('../config.php');
27 require_login(null, false);
30 redirect($CFG->wwwroot
);
33 if (empty($CFG->messaging
)) {
34 throw new \
moodle_exception('disabled', 'message');
37 // The id of the user we want to view messages from.
38 $id = optional_param('id', 0, PARAM_INT
);
39 $view = optional_param('view', null, PARAM_ALPHANUM
);
40 // It's possible a user may come from a link where these parameters are specified.
41 // We no longer support viewing another user's messaging area (that can be achieved
42 // via the 'Log-in as' feature). The 'user2' value takes preference over 'id'.
43 $userid = optional_param('user2', $id, PARAM_INT
);
44 $conversationid = optional_param('convid', null, PARAM_INT
);
46 if (!core_user
::is_real_user($userid)) {
49 // You can specify either a user, or a conversation, not both.
51 $conversationid = \core_message\api
::get_conversation_between_users([$USER->id
, $userid]);
52 } else if ($conversationid) {
53 // Check that the user belongs to the conversation.
54 if (!\core_message\api
::is_user_in_conversation($USER->id
, $conversationid)) {
55 $conversationid = null;
60 if (!\core_message\api
::can_send_message($userid, $USER->id
)) {
61 throw new moodle_exception('Can not contact user');
65 $url = new moodle_url('/message/index.php');
67 $url->param('id', $userid);
70 $PAGE->set_context(context_user
::instance($USER->id
));
71 $PAGE->set_pagelayout('mydashboard');
73 $strmessages = get_string('messages', 'message');
75 $PAGE->set_title("$strmessages");
76 $PAGE->set_heading("$strmessages");
78 // Remove the user node from the main navigation for this page.
79 $usernode = $PAGE->navigation
->find('users', null);
82 $settings = $PAGE->settingsnav
->find('messages', null);
83 $settings->make_active();
85 echo $OUTPUT->header();
86 // Display a message if the messages have not been migrated yet.
87 if (!get_user_preferences('core_message_migrate_data', false)) {
88 $notify = new \core\output\notification
(get_string('messagingdatahasnotbeenmigrated', 'message'),
89 \core\output\notification
::NOTIFY_WARNING
);
90 echo $OUTPUT->render($notify);
92 echo \core_message\helper
::render_messaging_widget(false, $userid, $conversationid, $view);
93 echo $OUTPUT->footer();