/
var
/
www
/
html
/
mogi
/
mod
/
chat
/
gui_header_js
/
Upload File
HOME
<?php include('../../../config.php'); include('../lib.php'); $chat_sid = required_param('chat_sid', PARAM_ALPHANUM); $chat_message = required_param('chat_message', PARAM_RAW); $PAGE->set_url('/mod/chat/gui_header_js/insert.php', array('chat_sid'=>$chat_sid,'chat_message'=>$chat_message)); if (!$chatuser = $DB->get_record('chat_users', array('sid'=>$chat_sid))) { print_error('notlogged', 'chat'); } if (!$chat = $DB->get_record('chat', array('id'=>$chatuser->chatid))) { print_error('nochat', 'chat'); } if (!$course = $DB->get_record('course', array('id'=>$chat->course))) { print_error('invalidcourseid'); } if (!$cm = get_coursemodule_from_instance('chat', $chat->id, $course->id)) { print_error('invalidcoursemodule'); } require_login($course, false, $cm); if (isguestuser()) { print_error('noguests'); } \core\session\manager::write_close(); /// Delete old users now chat_delete_old_users(); /// Clean up the message $chat_message = clean_text($chat_message, FORMAT_MOODLE); // Strip bad tags /// Add the message to the database if (!empty($chat_message)) { chat_send_chatmessage($chatuser, $chat_message, 0, $cm); $chatuser->lastmessageping = time() - 2; $DB->update_record('chat_users', $chatuser); } if ($chatuser->version == 'header_js') { $forcerefreshasap = ($CFG->chat_normal_updatemode != 'jsupdated'); // See bug MDL-6791 $module = array( 'name' => 'mod_chat_header', 'fullpath' => '/mod/chat/gui_header_js/module.js' ); $PAGE->requires->js_init_call('M.mod_chat_header.init_insert_nojsupdated', array($forcerefreshasap), true, $module); } redirect('../empty.php');