Updated copyright year.
[mailer.git] / inc / modules / member / what-logout.php
1 <?php
2 /************************************************************************
3  * Mailer v0.2.1-FINAL                                Start: 10/16/2003 *
4  * ===================                          Last change: 04/03/2004 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : what-logout.php                                  *
8  * -------------------------------------------------------------------- *
9  * Short description : Logout from member's area                        *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Aus dem Mitgliesbereich ausloggen                *
12  * -------------------------------------------------------------------- *
13  * $Revision::                                                        $ *
14  * $Date::                                                            $ *
15  * $Tag:: 0.2.1-FINAL                                                 $ *
16  * $Author::                                                          $ *
17  * @TODO Rewrite the code to a filter                                   *
18  * -------------------------------------------------------------------- *
19  * Copyright (c) 2003 - 2009 by Roland Haeder                           *
20  * Copyright (c) 2009 - 2016 by Mailer Developer Team                   *
21  * For more information visit: http://mxchange.org                      *
22  *                                                                      *
23  * This program is free software; you can redistribute it and/or modify *
24  * it under the terms of the GNU General Public License as published by *
25  * the Free Software Foundation; either version 2 of the License, or    *
26  * (at your option) any later version.                                  *
27  *                                                                      *
28  * This program is distributed in the hope that it will be useful,      *
29  * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
30  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
31  * GNU General Public License for more details.                         *
32  *                                                                      *
33  * You should have received a copy of the GNU General Public License    *
34  * along with this program; if not, write to the Free Software          *
35  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
36  * MA  02110-1301  USA                                                  *
37  ************************************************************************/
38
39 // Some security stuff...
40 if (!defined('__SECURITY')) {
41         exit();
42 } elseif (!isMember()) {
43         redirectToIndexMemberOnlyModule();
44 }
45
46 // Base URL for redirection (both cases)
47 $url = 'modules.php?module=index&amp;code=';
48
49 // Do the logout but keep session if current user is also admin
50 if (destroyMemberSession(!isAdmin())) {
51         // Remove theme cookie as well
52         // @TODO Move this in a filter, e.g. member_logout
53         if (isExtensionActive('theme')) {
54                 setMailerTheme('');
55         } // END - if
56
57         // Logout completed
58         $url .= getCode('LOGOUT_DONE');
59 } else {
60         // Cannot logout! :-(
61         $url .= getCode('LOGOUT_FAILED');
62 }
63
64 // Load the URL
65 redirectToUrl($url);
66
67 // [EOF]
68 ?>