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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
|
<?php /** * @version $Id: logout.php 2595 2006-02-24 03:13:47Z stingrey $ * @package Joomla * @copyright Copyright (C) 2005 Open Source Matters. All rights reserved. * @license http://www.gnu.org/copyleft/gpl.html GNU/GPL, see LICENSE.php * Joomla! is free software. This version may have been modified pursuant * to the GNU General Public License, and as distributed it includes or * is derivative of works licensed under the GNU General Public License or * other free or open source software licenses. * See COPYRIGHT.php for copyright notices and details. */
// no direct access defined( '_VALID_MOS' ) or die( 'Restricted access' );
global $database, $_VERSION;
// check to see if site is a production site // allows multiple logins with same user for a demo site if ( $_VERSION->SITE ) { // update db user last visit record corresponding to currently logged in user if ( isset( $_SESSION['session_user_id'] ) && $_SESSION['session_user_id'] != '' ) { $currentDate = date( "Y-m-d\TH:i:s" ); $query = "UPDATE #__users" . "\n SET lastvisitDate = '$currentDate'" . "\n WHERE id = ". $_SESSION['session_user_id'] ; $database->setQuery( $query ); if (!$database->query()) { echo $database->stderr(); } } // delete db session record corresponding to currently logged in user if ( isset( $_SESSION['session_id'] ) && $_SESSION['session_id'] != '' ) { $query = "DELETE FROM #__session" . "\n WHERE session_id = '". $_SESSION['session_id'] ."'" ; $database->setQuery( $query ); if (!$database->query()) { echo $database->stderr(); } } }
$name = ''; $fullname = ''; $id = ''; $session_id = '';
// destroy PHP session of currently logged in user session_unregister( 'session_id' ); session_unregister( 'session_user_id' ); session_unregister( 'session_username' ); session_unregister( 'session_usertype' ); session_unregister( 'session_logintime' );
if (session_is_registered( 'session_id' )) { session_destroy(); } if (session_is_registered( 'session_user_id' )) { session_destroy(); } if (session_is_registered( 'session_username' )) { session_destroy(); } if (session_is_registered( 'session_usertype' )) { session_destroy(); } if (session_is_registered( 'session_logintime' )) { session_destroy(); }
// return to site homepage mosRedirect( '../index.php' ); ?>
|