MDL-35385 mod_chat: made sure no message popups display within the chat window

This commit is contained in:
Andrew Davis 2013-04-12 11:59:08 +08:00
parent cf5a3296c4
commit dc514c1a0b
4 changed files with 4 additions and 1 deletions

View File

@ -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

View File

@ -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));

View File

@ -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');

View File

@ -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');