52 lines
1.6 KiB
PHP
Executable File
52 lines
1.6 KiB
PHP
Executable File
<?php
|
|
/*
|
|
+--------------------------------------------------------------------------
|
|
| CubeCart 4
|
|
| ========================================
|
|
| CubeCart is a registered trade mark of Devellion Limited
|
|
| Copyright Devellion Limited 2006. All rights reserved.
|
|
| Devellion Limited,
|
|
| 5 Bridge Street,
|
|
| Bishops Stortford,
|
|
| HERTFORDSHIRE.
|
|
| CM23 2JU
|
|
| UNITED KINGDOM
|
|
| http://www.devellion.com
|
|
| UK Private Limited Company No. 5323904
|
|
| ========================================
|
|
| Web: http://www.cubecart.com
|
|
| Email: info (at) cubecart (dot) com
|
|
| License Type: CubeCart is NOT Open Source Software and Limitations Apply
|
|
| Licence Info: http://www.cubecart.com/v4-software-license
|
|
+--------------------------------------------------------------------------
|
|
| logout.inc.php
|
|
| ========================================
|
|
| Remove customer id from session
|
|
+--------------------------------------------------------------------------
|
|
*/
|
|
|
|
if(!defined('CC_INI_SET')){ die("Access Denied"); }
|
|
|
|
## include lang file
|
|
$lang = getLang("includes".CC_DS."content".CC_DS."logout.inc.php");
|
|
|
|
## delete cookie
|
|
$logout = new XTemplate ("content".CC_DS."logout.tpl");
|
|
|
|
$logout->assign("LANG_LOGOUT_TITLE",$lang['logout']['logout']);
|
|
|
|
if($cc_session->ccUserData['customer_id']>0){
|
|
|
|
$cc_session->destroySession($GLOBALS[CC_SESSION_NAME]);
|
|
## lose any session data that may be lingering e.g. PayPal Express Checkout
|
|
session_unset();
|
|
$logout->assign("LANG_LOGOUT_STATUS",$lang['logout']['session_destroyed']);
|
|
|
|
} else {
|
|
|
|
$logout->assign("LANG_LOGOUT_STATUS",$lang['logout']['no_session']);
|
|
}
|
|
|
|
$logout->parse("logout");
|
|
$page_content = $logout->text("logout");
|
|
?>
|