b2ad7569cf15b7ca49876dc8121fd612e78695c4
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);
45)             redirect('useas?id='.$id);
46)         }
47)     }
48)     if ($_REQUEST['useas'] == 'extern') {
49)         if (isset($_REQUEST['action']) && $_REQUEST['action'] == 'delete') {
50)             set_kundenkontakt('extern', NULL);
51)             redirect('useas?id='.$id);
52)         } else {
53)             set_kundenkontakt('extern', $id);
54)             redirect('useas?id='.$id);
55)         }
56)     }
57)     if ($_REQUEST['useas'] == 'rechnung') {
58)         if (isset($_REQUEST['action']) && $_REQUEST['action'] == 'delete') {
59)             set_kundenkontakt('rechnung', NULL);
60)             redirect('useas?id='.$id);
61)         } else {
62)             set_kundenkontakt('rechnung', $id);
63)             redirect('useas?id='.$id);
64)         }
65)     }
66) } else {
Bernd Wurst Security

Bernd Wurst authored 6 years ago

67)     $adresse = nl2br("\n".filter_input_general($contact['address'])."\n".filter_input_general($contact['country']).'-'.filter_input_general($contact['zip']).' '.filter_input_general($contact['city']));
Bernd Wurst Setzen als Kundenkontakte e...

Bernd Wurst authored 6 years ago

68)     if (! $contact['city']) {
69)         $adresse = '';
70)     }
Bernd Wurst Security

Bernd Wurst authored 6 years ago

71)     $name = filter_input_general($contact['name']);
Bernd Wurst Setzen als Kundenkontakte e...

Bernd Wurst authored 6 years ago

72)     if ($contact['company']) {
Bernd Wurst Security

Bernd Wurst authored 6 years ago

73)         $name = filter_input_general($contact['company'])."<br />".filter_input_general($contact['name']);
Bernd Wurst Setzen als Kundenkontakte e...

Bernd Wurst authored 6 years ago

74)     }
75)     $email = implode("<br>\n", array_filter(array($contact['email'], $contact['phone'], $contact['fax'], $contact['mobile'])));
76) 
77)     $contact_string = "<div class=\"contact\" id=\"contact-{$contact['id']}\"><p class=\"contact-id\">#{$contact['id']}</p><p class=\"contact-address\"><strong>$name</strong>$adresse</p><p class=\"contact-contact\">$email</p></div>";
78) 
79)     output($contact_string);
80) 
81)     output('<h4>Verwendung als Kundenkontakt</h4>');
82)     if ($id == $kundenkontakte['kunde']) {
83)         output("<p>Diese Adresse ist die Stamm-Adresse!</p>");
84)     } else {
85)         if (possible_kundenkontakt($contact)) {
86)             addnew('useas', 'Diese Adresse als Haupt-Adresse des Kontoinhabers festlegen.', 'id='.$_REQUEST['id'].'&useas=kunde');
87)         }
88)         if ($id == $kundenkontakte['extern']) {
Bernd Wurst Security

Bernd Wurst authored 6 years ago

89)             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

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

Bernd Wurst authored 6 years ago

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

Bernd Wurst authored 6 years ago

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

Bernd Wurst authored 6 years ago

103)         $domains = domainlist_by_contact($contact);
104)         foreach ($domains as $d) {
105)             $funktion = array();
106)             if ($contact['id'] == $d->owner) {
107)                 $funktion[] = 'Inhaber';
108)             }
109)             if ($contact['id'] == $d->admin_c) {
110)                 $funktion[] = 'Verwalter';
111)             }
112)             $funktion = implode(' und ', $funktion);
113) 
114)             output('<p>Ist <strong>'.$funktion.'</strong> bei der Domain <strong>'.$d->fqdn.'</strong>.</p>');
115)         }
116) 
Bernd Wurst Setzen als Kundenkontakte e...

Bernd Wurst authored 6 years ago

117) 
Bernd Wurst Security

Bernd Wurst authored 6 years ago

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