mirror of
https://github.com/moodle/moodle.git
synced 2025-01-18 22:08:20 +01:00
MDL-35385 mod_chat: made sure no message popups display within the chat window
This commit is contained in:
parent
cf5a3296c4
commit
dc514c1a0b
@ -44,7 +44,7 @@ $context = context_module::instance($cm->id);
|
||||
require_login($course, false, $cm);
|
||||
require_capability('mod/chat:chat', $context);
|
||||
$PAGE->set_pagelayout('base');
|
||||
$PAGE->set_popup_notification_allowed(false); // No popup notifications in the chat window
|
||||
$PAGE->set_popup_notification_allowed(false);
|
||||
|
||||
/// Check to see if groups are being used here
|
||||
if ($groupmode = groups_get_activity_groupmode($cm)) { // Groups are being used
|
||||
|
@ -24,6 +24,7 @@ if (!$cm = get_coursemodule_from_instance('chat', $chat->id, $course->id)) {
|
||||
}
|
||||
|
||||
$PAGE->set_url('/mod/chat/gui_header_js/chatinput.php', array('chat_sid'=>$chat_sid, 'chat_id'=>$chatid));
|
||||
$PAGE->set_popup_notification_allowed(false);
|
||||
|
||||
//Get the user theme
|
||||
$USER = $DB->get_record('user', array('id'=>$chatuser->userid));
|
||||
|
@ -9,6 +9,7 @@ $chat_sid = required_param('chat_sid', PARAM_ALPHANUM);
|
||||
$beep = optional_param('beep', 0, PARAM_INT); // beep target
|
||||
|
||||
$PAGE->set_url('/mod/chat/gui_header_js/users.php', array('chat_sid'=>$chat_sid));
|
||||
$PAGE->set_popup_notification_allowed(false);
|
||||
|
||||
if (!$chatuser = $DB->get_record('chat_users', array('sid'=>$chat_sid))) {
|
||||
print_error('notlogged', 'chat');
|
||||
|
@ -8,6 +8,7 @@ require('../lib.php');
|
||||
$chat_sid = required_param('chat_sid', PARAM_ALPHANUM);
|
||||
|
||||
$PAGE->set_url('/mod/chat/gui_sockets/chatinput.php', array('chat_sid'=>$chat_sid));
|
||||
$PAGE->set_popup_notification_allowed(false);
|
||||
|
||||
if (!$chatuser = $DB->get_record('chat_users', array('sid'=>$chat_sid))) {
|
||||
print_error('notlogged', 'chat');
|
||||
|
Loading…
x
Reference in New Issue
Block a user