forked from atutor/ATutor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlogout.php
44 lines (40 loc) · 1.6 KB
/
logout.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<?php
/****************************************************************/
/* ATutor */
/****************************************************************/
/* Copyright (c) 2002-2010 */
/* Inclusive Design Institute */
/* http://atutor.ca */
/* */
/* This program is free software. You can redistribute it and/or*/
/* modify it under the terms of the GNU General Public License */
/* as published by the Free Software Foundation. */
/****************************************************************/
// $Id$
$_user_location = 'public';
define('AT_INCLUDE_PATH', 'include/');
require(AT_INCLUDE_PATH.'vitals.inc.php');
$sql = "DELETE FROM %susers_online WHERE member_id=%d";
queryDB($sql, array(TABLE_PREFIX, $_SESSION['member_id']));
// Unset these Session keys at the time of logout.
$unset_session = array('login',
'valid_user',
'member_id',
'is_admin',
'course_id',
'prefs',
'dd_question_ids',
'flash',
'userAgent',
'IPaddress',
'OBSOLETE',
'EXPIRES',
'redirect_to',
'token');
foreach ($unset_session as $session_name) {
unset($_SESSION[$session_name]);
}
$msg->addFeedback('LOGOUT');
header('Location: login.php');
exit;
?>