d0416d23b70a701e7c12b884bd947d4c670cc50e
bernd back-to-admin feature

bernd authored 15 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 back-to-admin feature

bernd authored 15 years ago

16) 
17) require_once('inc/debug.php');
Bernd Wurst "back_to_admin" soll es ein...

Bernd Wurst authored 11 years ago

18) if (! isset($_SESSION['admin_user'])) {
Hanno Fix coding style with php-c...

Hanno authored 5 years ago

19)     session_destroy();
20)     redirect($prefix.'go/su/su');
21)     die();
Bernd Wurst "back_to_admin" soll es ein...

Bernd Wurst authored 11 years ago

22) }
bernd back-to-admin feature

bernd authored 15 years ago

23) 
Bernd Wurst "back_to_admin" soll es ein...

Bernd Wurst authored 11 years ago

24) $admin_user = $_SESSION['admin_user'];
Hanno Fix coding style with php-c...

Hanno authored 5 years ago

25) $role = find_role($admin_user, '', true);
Bernd Wurst "back_to_admin" soll es ein...

Bernd Wurst authored 11 years ago

26) if ($role & ROLE_SYSADMIN) {
Hanno Fix coding style with php-c...

Hanno authored 5 years ago

27)     setup_session($role, $admin_user);
28)     unset($_SESSION['admin_user']);
29)     header('Location: '.$prefix.'go/su/su');
30)     die();
Bernd Wurst Generelle Su-Möglichkeit fü...

Bernd Wurst authored 8 years ago

31) } elseif ($role & ROLE_CUSTOMER) {
Hanno Fix coding style with php-c...

Hanno authored 5 years ago

32)     setup_session($role, $admin_user);
33)     unset($_SESSION['admin_user']);
34)     header('Location: '.$prefix.'go/su/su_customer');
35)     die();