*/ /** * [CLASS/FUNCTION INDEX of SCRIPT] * * * * 62: class SC_logout * 69: function logout() * * TOTAL FUNCTIONS: 1 * (This index is automatically created/updated by the extension "extdeveval") * */ require ('init.php'); /** * Script Class for logging a user out. * Does not display any content, just calls the logout-function for the current user and then makes a redirect. * * @author Kasper Skaarhoj * @package TYPO3 * @subpackage core */ class SC_logout { /** * Performs the logout processing * * @return void */ function logout() { global $BE_USER; $BE_USER->writelog(255,2,0,1,'User %s logged out from TYPO3 Backend',Array($BE_USER->user['username'])); // Logout written to log $BE_USER->logoff(); header('Location: '.t3lib_div::locationHeaderUrl(t3lib_div::_GP('redirect')?t3lib_div::_GP('redirect'):'index.php')); } } // Include extension? if (defined('TYPO3_MODE') && $TYPO3_CONF_VARS[TYPO3_MODE]['XCLASS']['typo3/logout.php']) { include_once($TYPO3_CONF_VARS[TYPO3_MODE]['XCLASS']['typo3/logout.php']); } // Make instance: $SOBE = t3lib_div::makeInstance('SC_logout'); $SOBE->logout(); ?>