dcc202fb249a446ac15c7cf413b9f1b4a3f31b58
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) 
Hanno Böck Change license from CC0 to...

Hanno Böck authored 1 year ago

5) Written 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) 
Hanno Böck Change license from CC0 to...

Hanno Böck authored 1 year ago

9) This code is published under a 0BSD license.
Bernd Wurst Added license tags for CC0,...

Bernd Wurst authored 12 years ago

10) 
11) 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.
12) */
bernd Neues AJAX-su

bernd authored 15 years ago

13) 
14) require_once('inc/base.php');
Bernd Wurst Suche auch bei unvollständi...

Bernd Wurst authored 11 years ago

15) require_once('inc/security.php');
bernd Neues AJAX-su

bernd authored 15 years ago

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

Bernd Wurst authored 11 years ago

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

bernd authored 15 years ago

26) 
Bernd Wurst Erzeuge sortierte Ausgabe d...

Bernd Wurst authored 11 years ago

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

Bernd Wurst authored 11 years ago

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

Bernd Wurst authored 11 years ago

30) 
Hanno Böck Codingstyle PSR12 + array s...

Hanno Böck authored 2 years ago

31) $out = [];
Bernd Wurst JSON nicht selbst bauen

Bernd Wurst authored 6 years ago

32) 
Bernd Wurst Verschiebe Such-Logik in di...

Bernd Wurst authored 11 years ago

33) foreach ($allentries as $entry) {
Hanno Böck Codingstyle PSR12 + array s...

Hanno Böck authored 2 years ago

34)     $out[] = ['id' => $entry['id'], 'value' => $entry['value']];
bernd Neues AJAX-su

bernd authored 15 years ago

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

Bernd Wurst authored 11 years ago

36) 
37) 
Bernd Wurst VHost-Edit-Seite auf JQuery...

Bernd Wurst authored 10 years ago

38) header("Content-Type: application/json");
Bernd Wurst JSON nicht selbst bauen

Bernd Wurst authored 6 years ago

39) echo json_encode($out);