course,'','','','','id,theme,lang')) { error('incorrect course id'); } //Get the user theme and enough info to be used in chat_format_message() which passes it along to if (!$USER = get_record('user','id',$chatuser->userid)) { // no optimisation here, it would break again in future! error('User does not exist!'); } $USER->description = ''; //Setup course, lang and theme course_setup($course); $courseid = $chatuser->course; if (!$cm = get_coursemodule_from_instance('chat', $chatuser->chatid, $courseid)) { error('Course Module ID was incorrect'); } if ($beep) { $message->chatid = $chatuser->chatid; $message->userid = $chatuser->userid; $message->groupid = $chatuser->groupid; $message->message = "beep $beep"; $message->system = 0; $message->timestamp = time(); if (!insert_record('chat_messages', $message)) { error('Could not insert a chat message!'); } $chatuser->lastmessageping = time(); // A beep is a ping ;-) } $chatuser->lastping = time(); set_field('chat_users', 'lastping', $chatuser->lastping, 'id', $chatuser->id ); $refreshurl = "users.php?chat_sid=$chat_sid"; /// Get list of users if (!$chatusers = chat_get_users($chatuser->chatid, $chatuser->groupid, $cm->groupingid)) { print_error('errornousers', 'chat'); } ob_start(); ?> Refresh link'; echo ''; foreach ($chatusers as $chatuser) { $lastping = $timenow - $chatuser->lastmessageping; $min = (int) ($lastping/60); $sec = $lastping - ($min*60); $min = $min < 10 ? '0'.$min : $min; $sec = $sec < 10 ? '0'.$sec : $sec; $idle = $min.':'.$sec; echo ''; } // added 2 s, xhtml strict complaints echo '
'; echo "id&course=$courseid','user$chatuser->id','');\" href=\"$CFG->wwwroot/user/view.php?id=$chatuser->id&course=$courseid\">"; print_user_picture($chatuser->id, 0, $chatuser->picture, false, false, false); echo ''; echo '

'; echo fullname($chatuser).'
'; echo "$stridle id}\">$idle"; echo " id\">$strbeep"; echo '

'; echo '
'; print_footer('empty'); // // Support HTTP Keep-Alive by printing Content-Length // // If the user pane is refreshing often, using keepalives // is lighter on the server and faster for most clients. // // Apache is normally configured to have a 15s timeout on // keepalives, so let's observe that. Unfortunately, we cannot // autodetect the keepalive timeout. // // Using keepalives when the refresh is longer than the timeout // wastes server resources keeping an apache child around on a // connection that will timeout. So we don't. if ($CFG->chat_refresh_userlist < 15) { header("Content-Length: " . ob_get_length() ); ob_end_flush(); } exit; // no further output ?>