4cd40851bd3eb41c739750ea9668184d0c3c05f8
Bernd Wurst In neues Modul ausgelagert

Bernd Wurst authored 6 years ago

1) <?php
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 In neues Modul ausgelagert

Bernd Wurst authored 6 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) */
16) 
17) require_once('handles.php');
18) require_once('inc/debug.php');
19) 
20) require_once('session/start.php');
21) 
22) 
23) require_role(array(ROLE_CUSTOMER));
24) 
25) title("Adressen verwalten");
26) 
27) 
28) $handles = get_handles();
29) $kundenhandles = get_kundenhandles();
30) 
31) output('<p>Sie haben aktuell diese Adressen gespeichert:</p>
32) <table>
33) <tr><th>#</th><th>Name</th><th>Adresse</th><th>E-Mail</th><th>Verwendung</th><th>Aktionen</th></tr>
34) ');
35) foreach ($handles as $id => $handle) {
36)     $adresse = nl2br($handle['address']."\n".$handle['country'].'-'.$handle['zip'].' '.$handle['city']);
Bernd Wurst $usage ist ein array

Bernd Wurst authored 6 years ago

37)     $usage = array();
Bernd Wurst In neues Modul ausgelagert

Bernd Wurst authored 6 years ago

38)     if ($id == $kundenhandles['kunde']) {
Bernd Wurst $usage ist ein array

Bernd Wurst authored 6 years ago

39)         $usage[] = 'Stamm-Adresse';
Bernd Wurst In neues Modul ausgelagert

Bernd Wurst authored 6 years ago

40)     }
41)     if ($id == $kundenhandles['extern']) {
Bernd Wurst $usage ist ein array

Bernd Wurst authored 6 years ago

42)         $usage[] = 'Ersatz-Adresse';
Bernd Wurst In neues Modul ausgelagert

Bernd Wurst authored 6 years ago

43)     }
44)     if ($id == $kundenhandles['rechnung']) {
Bernd Wurst $usage ist ein array

Bernd Wurst authored 6 years ago

45)         $usage[] = 'Rechnungs-Adresse';
Bernd Wurst In neues Modul ausgelagert

Bernd Wurst authored 6 years ago

46)     }
Bernd Wurst $usage ist ein array

Bernd Wurst authored 6 years ago

47)     if ($handle['nic_handle']) {
48)         $usage[] = 'Domain-Kontakt';
49)     }
50)     $usage = join(', ', $usage);
Bernd Wurst E-Mail-Adresse verifizieren...

Bernd Wurst authored 6 years ago

51)     $email = $handle['email'];
52)     $new_email = update_pending($id);
53)     if ($new_email) {
Bernd Wurst Zeige alte und neue Adresse...

Bernd Wurst authored 6 years ago

54)         $email = "<strike>$email</strike><br/>".$new_email.footnote('Die E-Mail-Adresse wurde noch nicht bestätigt');
Bernd Wurst E-Mail-Adresse verifizieren...

Bernd Wurst authored 6 years ago

55)     }
56)     output("<tr><td>{$handle['id']}</td><td><strong>{$handle['name']}</strong></td><td>$adresse</td><td>$email</td><td>$usage</td><td>...</td></tr>");