904b651c7dc557f880c8c8056ddb2f441b0b6eee
bernd webinterface => /webinterface

bernd authored 17 years ago

1) <?php
Bernd Wurst Added license tags for CC0,...

Bernd Wurst authored 12 years ago

2) /*
3) This file belongs to the Webinterface of schokokeks.org Hosting
4) 
Bernd Wurst Copyright year update

Bernd Wurst authored 6 years ago

5) Written 2008-2018 by schokokeks.org Hosting, namely
Bernd Wurst Added license tags for CC0,...

Bernd Wurst authored 12 years ago

6)   Bernd Wurst <bernd@schokokeks.org>
7)   Hanno Böck <hanno@schokokeks.org>
8) 
9) To the extent possible under law, the author(s) have dedicated all copyright and related and neighboring rights to this software to the public domain worldwide. This software is distributed without any warranty.
10) 
Hanno Fix coding style with php-c...

Hanno authored 5 years ago

11) You should have received a copy of the CC0 Public Domain Dedication along with this software. If not, see
Bernd Wurst Added license tags for CC0,...

Bernd Wurst authored 12 years ago

12) http://creativecommons.org/publicdomain/zero/1.0/
13) 
14) Nevertheless, in case you use a significant part of this code, we ask (but not require, see the license) that you keep the authors' names in place and return your changes to the public. We would be especially happy if you tell us what you're going to do with this code.
15) */
bernd webinterface => /webinterface

bernd authored 17 years ago

16) 
17) require_once('session/start.php');
18) 
19) require_once('inc/error.php');
20) 
Bernd Wurst Cookie-based autologin when...

Bernd Wurst authored 11 years ago

21) if (isset($_COOKIE['CLIENTCERT_AUTOLOGIN'])) {
Hanno Fix coding style with php-c...

Hanno authored 5 years ago

22)     setcookie('CLIENTCERT_AUTOLOGIN', false, 0, '/');
Bernd Wurst Cookie-based autologin when...

Bernd Wurst authored 11 years ago

23) }
Hanno Fix coding style with php-c...

Hanno authored 5 years ago

24) if (!session_destroy()) {
25)     logger(LOG_INFO, "modules/index/logout", "logout", "session timed out.");
26)     system_failure('Die Sitzung konnte nicht geschlossen werden, eventuell ist die Wartezeit abgelaufen und die Sitzung wurde daher schon beendet.');
bernd webinterface => /webinterface

bernd authored 17 years ago

27) }
bernd role auf anonymous setzen,...

bernd authored 14 years ago

28) $_SESSION['role'] = ROLE_ANONYMOUS;
bernd webinterface => /webinterface

bernd authored 17 years ago

29) 
bernd Logger mit Logleveln

bernd authored 14 years ago

30) logger(LOG_INFO, "modules/index/logout", "logout", "logged out");
bernd eliminate .php extensions f...

bernd authored 15 years ago

31) 
bernd Benutze überall title() sta...

bernd authored 13 years ago

32) title("Abmeldung");
bernd webinterface => /webinterface

bernd authored 17 years ago

33) output('
34) 
35) <p>Sie wurden vom System abgemeldet.</p>
36) 
bernd eliminate .php extensions f...

bernd authored 15 years ago

37) <p>Um sich neu anzumelden, klicken Sie bitte hier: '.internal_link("index", "Anmeldung").'.</p>