3a072b88368ae6495a3fa9a8a4ff8e8ae87d6101
Bernd Wurst JQuery als Include HSTS-Int...

Bernd Wurst authored 10 years ago

1) <?php
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 JQuery als Include HSTS-Int...

Bernd Wurst authored 10 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 JQuery als Include HSTS-Int...

Bernd Wurst authored 10 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) */
16) 
17) require_once('inc/base.php');
18) 
Bernd Wurst JQuery/-UI integriert und V...

Bernd Wurst authored 10 years ago

19) if (! defined('__JQUERY_INCLUDED')) {
Hanno Fix coding style with php-c...

Hanno authored 5 years ago

20)     define('__JQUERY_INCLUDED', '1');
21)     global $prefix;
22)     html_header('
Bernd Wurst JQuery-UI mit komplettem CS...

Bernd Wurst authored 10 years ago

23) <link rel="stylesheet" href="'.$prefix.'external/jquery/ui/jquery-ui.min.css" />
Bernd Wurst JQuery/-UI integriert und V...

Bernd Wurst authored 10 years ago

24) <script type="text/javascript" src="'.$prefix.'external/jquery/jquery.min.js" ></script>
Bernd Wurst JQuery-UI mit komplettem CS...

Bernd Wurst authored 10 years ago

25) <script type="text/javascript" src="'.$prefix.'external/jquery/ui/jquery-ui.min.js" ></script>
Bernd Wurst JQuery als Include HSTS-Int...

Bernd Wurst authored 10 years ago

26) ');
Bernd Wurst JQuery/-UI integriert und V...

Bernd Wurst authored 10 years ago

27) }
28) 
Hanno Fix coding style with php-c...

Hanno authored 5 years ago

29) function javascript($file = null, $module = null)
30) {
31)     global $go, $prefix;
32)     list($mod, $page) = explode('/', $go, 2);
33)     if (! $file) {
34)         $file = $page.'.js';
35)     }
36)     if (! $module) {
37)         $module = $mod;
38)     }
39)     if (file_exists('modules/'.$module.'/'.$file)) {
40)         html_header('
Bernd Wurst JQuery/-UI integriert und V...

Bernd Wurst authored 10 years ago

41) <script type="text/javascript" src="'.$prefix.'modules/'.$module.'/'.$file.'"></script>
42) ');
Hanno Fix coding style with php-c...

Hanno authored 5 years ago

43)     } else {
44)         DEBUG('Missing JS file: '.'modules/'.$module.'/'.$file);
45)         warning('Interner Fehler: Dieses Modul wollte JavaScript laden, das hat aber nicht geklappt.');
46)     }