bd90f09031f3ac9b017430bd5dacd924cf844179
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 su-Modul auf jQuery umgeste...

Bernd Wurst authored 11 years ago

30) header("Content-Type: text/javascript");
31) echo "[\n";
32) 
33) $result = array_unique(find_customers($_GET['term']));
bernd Neues AJAX-su

bernd authored 15 years ago

34) sort($result);
35) foreach ($result as $val) {
36)   $c = new Customer((int) $val);
Bernd Wurst su-Modul auf jQuery umgeste...

Bernd Wurst authored 11 years ago

37)   echo " {\"id\": \"c{$c->id}\", \"value\": \"Kunde {$c->id}: {$c->fullname}\"},\n";
bernd Neues AJAX-su

bernd authored 15 years ago

38)   $users = find_users_for_customer($c->id);
39)   foreach ($users as $uid => $username) {
Bernd Wurst su-Modul auf jQuery umgeste...

Bernd Wurst authored 11 years ago

40)     echo " {\"id\": \"u{$uid}\", \"label\": \"User {$uid}: {$username}\"},\n";
bernd Neues AJAX-su

bernd authored 15 years ago

41)   }
42) }
Bernd Wurst su-Modul auf jQuery umgeste...

Bernd Wurst authored 11 years ago

43) echo ' {}
44) ]';