838077f18b71321a685c84329342e6a711d22d09
bernd some AJAX test

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) 
5) Written 2008-2012 by schokokeks.org Hosting, namely
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 some AJAX test

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('crm.php');
22) 
bernd CRM still incomplete and un...

bernd authored 15 years ago

23) require_once('class/customer.php');
24) 
bernd some AJAX test

bernd authored 15 years ago

25) require_role(ROLE_SYSADMIN);
26) 
bernd CRM still incomplete and un...

bernd authored 15 years ago

27) $ajax_formtoken = generate_form_token('crm_crm_ajax');
bernd some AJAX test

bernd authored 15 years ago

28) 
bernd CRM still incomplete and un...

bernd authored 15 years ago

29) $result = array_unique(find_customers($_GET['q']));
bernd some AJAX test

bernd authored 15 years ago

30) sort($result);
31) foreach ($result as $val) {
bernd CRM still incomplete and un...

bernd authored 15 years ago

32)   $c = new Customer((int) $val);
33)   echo '<p style="margin-bottom: 0.5em;">'.internal_link('select_customer', 'Kunde '.$c->id.': <strong>'.$c->fullname.'</strong>', 'customer='.$c->id.'&formtoken='.$ajax_formtoken);
34)   echo '</p>';