*/ class Logout extends BaseModule { /** * @brief Process logout requests */ public static function init() { Hook::callAll("logging_out"); Authentication::deleteSession(); info(L10n::t('Logged out.') . EOL); self::getApp()->internalRedirect(); } }