33a6604d4816bf8a8fde2a2d3194863490ac5b28
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 Lizenzinfos in eigenes Modu...

Bernd Wurst authored 10 years ago

5) Written 2008-2014 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) 
11) You should have received a copy of the CC0 Public Domain Dedication along with this software. If not, see 
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) 
bernd Menü-Includes sinnvoller /...

bernd authored 16 years ago

17) require_once('config.php');
bernd Einige Dummheiten repariert...

bernd authored 14 years ago

18) require_once('inc/base.php');
bernd Mehr config-optionen und co...

bernd authored 14 years ago

19) $debugmode = (isset($_GET['debug']) && config('enable_debug'));
bernd Menü-Includes sinnvoller /...

bernd authored 16 years ago

20) 
bernd webinterface => /webinterface

bernd authored 17 years ago

21) function DEBUG($str)
22) {
bernd some updates

bernd authored 15 years ago

23)   global $debugmode;
24)   if ($debugmode)
25)     if (is_array($str) || is_object($str))
bernd Menü-Includes sinnvoller /...

bernd authored 16 years ago

26)     {
27)       echo "<pre>".print_r($str, true)."</pre>\n";
28)     }
29)     else
30)     {
bernd some updates

bernd authored 15 years ago

31)       echo $str . "<br />\n";
bernd Menü-Includes sinnvoller /...

bernd authored 16 years ago

32)     }
bernd webinterface => /webinterface

bernd authored 17 years ago

33) }
34) 
bernd DEBUG-Ausgaben zentralisiert

bernd authored 16 years ago

35) 
36) DEBUG("GET: ".htmlentities(print_r($_GET, true))." / POST: ".htmlentities(print_r($_POST, true)));
37)