source: trunk/services/logout.php @ 152

Last change on this file since 152 was 149, checked in by scdev, 18 years ago

Q - while we're changing interfaces I'm going to change ->clearAuth() to ->clear().

File size: 542 bytes
RevLine 
[1]1<?php
2/**
[42]3 * logout.php
[1]4 * Code by Strangecode :: www.strangecode.com :: This document contains copyrighted information
5 */
6
[149]7if (isset($auth) && method_exists($auth, 'get')) {
[103]8    // Delete the current user's record locks.
[137]9    require_once 'codebase/lib/Lock.inc.php';
10    $lock =& Lock::getInstance($auth);
[147]11    $lock->removeAll($auth->get('user_id'));
[22]12}
[1]13
14// Logout.
[149]15$auth->clear();
[1]16
[136]17$app->raiseMsg(sprintf(_("Your session has been logged-out."), null), MSG_SUCCESS, __FILE__, __LINE__);
18$app->dieURL($app->getParam('redirect_home_url'));
[1]19
20?>
Note: See TracBrowser for help on using the repository browser.