1bf695b4c6651062ff35a8be004fbd86ee2631fd
bernd Neues AJAX-su

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 Updated copyright notice (2...

Bernd Wurst authored 11 years ago

5) Written 2008-2013 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 Neues AJAX-su

bernd authored 15 years ago

16) 
17) require_once('inc/base.php');
18) require_once('inc/debug.php');
19) 
20) require_once('session/start.php');
21) require_once('su.php');
22) 
23) require_once('class/customer.php');
24) 
25) require_role(ROLE_SYSADMIN);
26) 
Bernd Wurst su-Modul auf jQuery umgeste...

Bernd Wurst authored 11 years ago

27) # Save the timestamp of this request to the session, so we accept only actions performed some seconds after this
28) $_SESSION['su_ajax_timestamp'] = time();
bernd Neues AJAX-su

bernd authored 15 years ago

29) 
Bernd Wurst Erzeuge sortierte Ausgabe d...

Bernd Wurst authored 11 years ago

30) $term = $_GET['term'];
31) 
Bernd Wurst Verschiebe Such-Logik in di...

Bernd Wurst authored 11 years ago

32) $allentries = build_results($term);
Bernd Wurst Erzeuge sortierte Ausgabe d...

Bernd Wurst authored 11 years ago

33) 
34) $lines = array();
Bernd Wurst Verschiebe Such-Logik in di...

Bernd Wurst authored 11 years ago

35) foreach ($allentries as $entry) {
36)   $lines[] = "  { \"id\": \"".filter_input_general($entry['id'])."\", \"value\": \"".filter_input_general($entry['value'])."\" }";
bernd Neues AJAX-su

bernd authored 15 years ago

37) }
Bernd Wurst Erzeuge sortierte Ausgabe d...

Bernd Wurst authored 11 years ago

38) 
39) 
40) 
41) header("Content-Type: text/javascript");
42) echo "[\n";
43) echo implode(",\n", $lines);
44) echo '
Bernd Wurst su-Modul auf jQuery umgeste...

Bernd Wurst authored 11 years ago

45) ]';