d0416d23b70a701e7c12b884bd947d4c670cc50e
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 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 Neues AJAX-su

bernd authored 15 years ago

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

Bernd Wurst authored 11 years ago

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

bernd authored 15 years ago

19) require_once('inc/debug.php');
20) 
21) require_once('session/start.php');
22) require_once('su.php');
23) 
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) 
Bernd Wurst JSON nicht selbst bauen

Bernd Wurst authored 6 years ago

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

Bernd Wurst authored 11 years ago

36) foreach ($allentries as $entry) {
Hanno Fix coding style with php-c...

Hanno authored 5 years ago

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

bernd authored 15 years ago

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

Bernd Wurst authored 11 years ago

39) 
40) 
Bernd Wurst VHost-Edit-Seite auf JQuery...

Bernd Wurst authored 10 years ago

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

Bernd Wurst authored 6 years ago

42) echo json_encode($out);