bf9c6007cd7ee6a1032999aaa56fefcf39b26b88
Bernd Wurst Setzen als Kundenkontakte e...

Bernd Wurst authored 6 years ago

1) <?php
2) /*
3) This file belongs to the Webinterface of schokokeks.org Hosting
4) 
5) Written 2008-2018 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) */
16) 
17) require_once('contacts.php');
18) require_once('inc/debug.php');
19) require_once('inc/icons.php');
20) require_once('inc/jquery.php');
21) #javascript();
22) 
23) require_once('session/start.php');
24) 
25) 
26) require_role(array(ROLE_CUSTOMER));
27) $section = 'contacts_list';
28) 
29) title("Adresse verwenden als...");
30) 
31) 
32) output(internal_link('list', 'Zurück zur Übersicht'));
33) 
34) $contact = get_contact($_REQUEST['id']);
35) $kundenkontakte = get_kundenkontakte();
36) $id = $contact['id'];
37) 
38) 
39) if (isset($_REQUEST['useas'])) {
40)     if ($_REQUEST['useas'] == 'kunde') {
41)         if (isset($_REQUEST['action']) && $_REQUEST['action'] == 'delete') {
42)             system_failure("Man kann eine Kunden-Adresse nicht löschen, bitte eine neue als Ersatz festlegen!");
43)         } else {
44)             set_kundenkontakt('kunde', $id);
Bernd Wurst Abstrahieren der Anzeigefun...

Bernd Wurst authored 6 years ago

45)             //redirect('useas?id='.$id);
46)             // usability: Dann kann man da eh nichts mehr machen, also zurück zur Übersicht
47)             redirect('list');
Bernd Wurst Setzen als Kundenkontakte e...

Bernd Wurst authored 6 years ago

48)         }
49)     }
50)     if ($_REQUEST['useas'] == 'extern') {
51)         if (isset($_REQUEST['action']) && $_REQUEST['action'] == 'delete') {
52)             set_kundenkontakt('extern', NULL);
53)             redirect('useas?id='.$id);
54)         } else {
55)             set_kundenkontakt('extern', $id);
56)             redirect('useas?id='.$id);
57)         }
58)     }
59)     if ($_REQUEST['useas'] == 'rechnung') {
60)         if (isset($_REQUEST['action']) && $_REQUEST['action'] == 'delete') {
61)             set_kundenkontakt('rechnung', NULL);
62)             redirect('useas?id='.$id);
63)         } else {
64)             set_kundenkontakt('rechnung', $id);
65)             redirect('useas?id='.$id);
66)         }
67)     }
68) } else {
Bernd Wurst Abstrahieren der Anzeigefun...

Bernd Wurst authored 6 years ago

69)     output(display_contact($contact));
Bernd Wurst UI-Änderung, man kann Konta...

Bernd Wurst authored 6 years ago

70)     output('<p>'.internal_link('edit', icon_edit('Adresse bearbeiten')." Adresse bearbeiten", 'id='.$id).'</p>');
71)     if ($id != $kundenkontakte['kunde'] && ! is_domainholder($id)) {
72)         // Die Stamm-Adresse kann man nicht löschen und verwendete Domain-Kontakte auch nicht
73)         output('<p class="delete">'.internal_link('save', "Diese Adresse löschen", 'action=delete&id='.$id).'</p>');
74)     }
Bernd Wurst Setzen als Kundenkontakte e...

Bernd Wurst authored 6 years ago

75) 
76)     output('<h4>Verwendung als Kundenkontakt</h4>');
77)     if ($id == $kundenkontakte['kunde']) {
78)         output("<p>Diese Adresse ist die Stamm-Adresse!</p>");
79)     } else {
80)         if (possible_kundenkontakt($contact)) {
81)             addnew('useas', 'Diese Adresse als Haupt-Adresse des Kontoinhabers festlegen.', 'id='.$_REQUEST['id'].'&useas=kunde');
82)         }
83)         if ($id == $kundenkontakte['extern']) {
Bernd Wurst Security

Bernd Wurst authored 6 years ago

84)             output("<p>Diese Adresse ist die Ersatz-Adresse bei Störungen. ".icon_delete().internal_link('useas', "Zuordnung löschen", 'id='.$_REQUEST['id'].'&useas=extern&action=delete')."</p>");
Bernd Wurst Setzen als Kundenkontakte e...

Bernd Wurst authored 6 years ago

85)         } else {
86)             addnew('useas', 'Diese Adresse als Ersatz-Adresse des Kontoinhabers für Störungen festlegen.', 'id='.$_REQUEST['id'].'&useas=extern');
87)         }
88)         if ($id == $kundenkontakte['rechnung']) {
89)             output("<p>Diese Adresse ist die Rechnungs-Adresse. ".icon_delete().internal_link('useas', "Zuordnung löschen", 'id='.$_REQUEST['id'].'&useas=rechnung&action=delete')."</p>");
90)         } else {
91)             addnew('useas', 'Diese Adresse als Rechnungs-Adresse festlegen.', 'id='.$_REQUEST['id'].'&useas=rechnung');
92)         }
93)     }
94) 
95) 
Bernd Wurst Security

Bernd Wurst authored 6 years ago

96)     output("<h4>Verwendung als Domaininhaber bzw. -Verwalter</h4>");
Bernd Wurst Setzen als Kundenkontakte e...

Bernd Wurst authored 6 years ago

97)     if (possible_domainholder($contact)) {
Bernd Wurst Security

Bernd Wurst authored 6 years ago

98)         $domains = domainlist_by_contact($contact);
99)         foreach ($domains as $d) {
100)             $funktion = array();
101)             if ($contact['id'] == $d->owner) {
102)                 $funktion[] = 'Inhaber';
103)             }
104)             if ($contact['id'] == $d->admin_c) {
105)                 $funktion[] = 'Verwalter';
106)             }
107)             $funktion = implode(' und ', $funktion);
108) 
Bernd Wurst Ermögliche das Ändern einer...

Bernd Wurst authored 6 years ago

109)             output('<p>Ist <strong>'.$funktion.'</strong> bei der Domain <strong>'.$d->fqdn.'</strong>. '.internal_link('../domains/update', icon_edit()." Inhaber dieser Domain ändern", 'id='.$d->id).'</p>');
Bernd Wurst Security

Bernd Wurst authored 6 years ago

110)         }
111) 
Bernd Wurst Setzen als Kundenkontakte e...

Bernd Wurst authored 6 years ago

112) 
Bernd Wurst Security

Bernd Wurst authored 6 years ago

113)     } else {
114)         output("<p>Zur Verwendung als Domaininhaber müssen Name, vollständige Adresse, E-Mail-Adresse sowie Telefonnummer angegeben sein.</p>");