9b0b6f46e4076673ecd682d0c1697629512576d9
Bernd Wurst Vorbereitung für edit/new

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');
Bernd Wurst Prüfe Nummern via AJAX

Bernd Wurst authored 6 years ago

19) require_once('inc/jquery.php');
20) javascript();
Bernd Wurst Vorbereitung für edit/new

Bernd Wurst authored 6 years ago

21) 
22) require_once('session/start.php');
23) 
24) 
25) require_role(array(ROLE_CUSTOMER));
Bernd Wurst Zeige bestehende Daten in d...

Bernd Wurst authored 6 years ago

26) $section = 'contacts_list';
Bernd Wurst Vorbereitung für edit/new

Bernd Wurst authored 6 years ago

27) 
28) $new = False;
Bernd Wurst Zeige bestehende Daten in d...

Bernd Wurst authored 6 years ago

29) if ($_REQUEST['id'] == 'new') {
Bernd Wurst Vorbereitung für edit/new

Bernd Wurst authored 6 years ago

30)     title("Adresse anlegen");
31)     $new = True;
32) } else {
33)     title("Adresse bearbeiten");
34) }
35) 
Bernd Wurst Zeige bestehende Daten in d...

Bernd Wurst authored 6 years ago

36) $c = new_contact();
Bernd Wurst Vorbereitung für edit/new

Bernd Wurst authored 6 years ago

37) if (! $new) {
Bernd Wurst Zeige bestehende Daten in d...

Bernd Wurst authored 6 years ago

38)     $c = get_contact($_REQUEST['id']);
Bernd Wurst Kontakt kopieren

Bernd Wurst authored 6 years ago

39) } elseif (isset($_REQUEST['copy'])) {
40)     $c = get_contact($_REQUEST['copy']);
41)     $c['nic_handle'] = NULL;
Bernd Wurst Vorbereitung für edit/new

Bernd Wurst authored 6 years ago

42) }
Bernd Wurst Frage die Zustimmung des Do...

Bernd Wurst authored 6 years ago

43) $domains = domainlist_by_contact($c);
Bernd Wurst Vorbereitung für edit/new

Bernd Wurst authored 6 years ago

44) 
Bernd Wurst Zeige bestehende Daten in d...

Bernd Wurst authored 6 years ago

45) $readonly = '';
46) // Wenn das Handle beim NIC angemeldet ist, kann man Name und Land nicht mehr ändern
47) if ($c['nic_handle'] != NULL) {
48)     $readonly = ' disabled="disabled" ';
49)     output('<p>Da diese Adresse als möglicher Domaininhaber bei der Domain-Regristry angemeldet ist, können Name/Firmenname und Land nicht mehr geändert werden. Legen Sie ggf. eine neue Adresse an und ändern Sie den Domain-Inhaber entsprechend.</p>');
50) }
Bernd Wurst Ermögliche das Erstellen ei...

Bernd Wurst authored 6 years ago

51) if (isset($_REQUEST['domainholder']) && $_REQUEST['domainholder'] == 1) {
52)     output('<p>Für einen Domaininhaber muss mindestens Name, vollständige Adresse, E-Mail-Adresse und Telefonnummer angegeben werden.</p>');
53) }
Bernd Wurst Zeige bestehende Daten in d...

Bernd Wurst authored 6 years ago

54) $odd = false;
55) $html = '<table>';
56) $html .= '    <tr class="'.($odd == true ? 'odd' : 'even').'"><td>Firmenname:</td><td><input type="text" name="firma" id="firma" value="'.$c['company'].'" '.$readonly.' /></td></tr>';
57) $odd = !$odd;
58) $html .= '<tr class="'.($odd == true ? 'odd' : 'even').'"><td>'.($c['company'] ? 'Ansprechpartner' : 'Name').':</td><td><input type="text" name="name" id="name" value="'.$c['name'].'" '.$readonly.' /></td></tr>';
59) $odd = !$odd;
60) $html .= '<tr class="'.($odd == true ? 'odd' : 'even').'"><td><label for="adresse">Adresse:</label></td><td><textarea rows="3" name="adresse" id="adresse">'.$c['address'].'</textarea></td></tr>';
61) $odd = !$odd;
62) $html .= '<tr class="'.($odd == true ? 'odd' : 'even').'"><td><label for="plz">Land / PLZ:</label></td><td><input size="2" type="text" name="land" id="land" value="'.$c['country'].'" '.$readonly.' />-</strong><input type="text" name="plz" id="plz" value="'.$c['zip'].'"></td></tr>';
63) $odd = !$odd;
64) $html .= '<tr class="'.($odd == true ? 'odd' : 'even').'"><td><label for="ort">Ort:</label></td><td><input type="text" name="ort" id="ort" value="'.$c['city'].'"></td></tr>';
65) $odd = !$odd;
66) 
67) 
68) $html .= '<tr class="'.($odd == true ? 'odd' : 'even').'"><td><label for="email">E-Mail-Adresse:</label></td><td><input type="text" name="email" id="email" value="'.$c['email'].'"></td></tr>';
69) $odd = !$odd;
70) 
Bernd Wurst Prüfe Nummern via AJAX

Bernd Wurst authored 6 years ago

71) $html .= '<tr class="'.($odd == true ? 'odd' : 'even').'"><td><label for="telefon">Telefonnummer:</label></td><td><input type="text" name="telefon" id="telefon" value="'.$c['phone'].'"><span id="telefon_feedback"></span></td></tr>';
Bernd Wurst Zeige bestehende Daten in d...

Bernd Wurst authored 6 years ago

72) $odd = !$odd;
Bernd Wurst Prüfe Nummern via AJAX

Bernd Wurst authored 6 years ago

73) $html .= '<tr class="'.($odd == true ? 'odd' : 'even').'"><td><label for="telefon">Mobil:</label></td><td><input type="text" name="mobile" id="mobile" value="'.$c['mobile'].'"><span id="mobile_feedback"></span></td></tr>';
Bernd Wurst Zeige bestehende Daten in d...

Bernd Wurst authored 6 years ago

74) $odd = !$odd;
Bernd Wurst Prüfe Nummern via AJAX

Bernd Wurst authored 6 years ago

75) $html .= '<tr class="'.($odd == true ? 'odd' : 'even').'"><td><label for="telefon">Telefax:</label></td><td><input type="text" name="telefax" id="telefax" value="'.$c['fax'].'"><span id="telefax_feedback"></span></td></tr>';
Bernd Wurst Zeige bestehende Daten in d...

Bernd Wurst authored 6 years ago

76) $odd = !$odd;
77) 
Bernd Wurst Frage die Zustimmung des Do...

Bernd Wurst authored 6 years ago

78) if ($domains) {
Bernd Wurst Ermögliche das Setzen des P...

Bernd Wurst authored 6 years ago

79)     $html .= '<tr class="odd" id="designated-row"><td><label for="designated"><strong>Inhaberwechsel:</strong></label></td><td><input type="checkbox" name="designated" id="designated" value="yes"><label for="designated">Die Änderung der E-Mail-Adresse bewirkt rechtlich einen Inhaberwechsel. Ich bestätige, dass mir eine explizite Zustimmung des alten und neuen Inhabers für diese Änderung vorliegt. Eine Speicherung der Änderungen ist nur mit dieser Zustimmung möglich.</label></td></tr>';
Bernd Wurst Frage die Zustimmung des Do...

Bernd Wurst authored 6 years ago

80) }
81) 
Bernd Wurst Ermögliche das Setzen des P...

Bernd Wurst authored 6 years ago

82) $html .= '<tr class="'.($odd == true ? 'odd' : 'even').'"><td><label for="pgpid">PGP-Key-ID:</label></td><td><input type="text" name="pgpid" id="pgpid" value="'.$c['pgp_id'].'"><span id="pgpid_feedback"></span></td></tr>';
83) $odd = !$odd;
84) $html .= '<tr class="'.($odd == true ? 'odd' : 'even').'"><td><label for="pgpkey">PGP-Key (ASCII-Armored):</label></td><td><textarea name="pgpkey" id="pgpkey">'.$c['pgp_key'].'</textarea></td></tr>';
85) $odd = !$odd;
86) 
Bernd Wurst Zeige bestehende Daten in d...

Bernd Wurst authored 6 years ago

87) $html .= '<tr class="even"><td>&nbsp;</td><td><input type="submit" value="Speichern" /></td></tr>';
88) $html .= '</table>';
89) 
Bernd Wurst Vorbereitung für edit/new

Bernd Wurst authored 6 years ago

90) 
Bernd Wurst Frage die Zustimmung des Do...

Bernd Wurst authored 6 years ago

91) 
Bernd Wurst Ermögliche das Ändern eines...

Bernd Wurst authored 6 years ago

92) $back = 'list';
93) if (isset($_REQUEST['back'])) {
94)     $back = urldecode($_REQUEST['back']);
95) }
Bernd Wurst Ermögliche das Erstellen ei...

Bernd Wurst authored 6 years ago

96) $domainholder = '';
97) if (isset($_REQUEST['domainholder']) && $_REQUEST['domainholder'] == 1) {
98)     $domainholder='&domainholder=1';
99) }
100) 
101) output(html_form('contacts_edit', 'save', 'id='.$_REQUEST['id']."&back=".urlencode($back).$domainholder, $html));
Bernd Wurst Vorbereitung für edit/new

Bernd Wurst authored 6 years ago

102) 
Bernd Wurst Frage die Zustimmung des Do...

Bernd Wurst authored 6 years ago

103) if ($domains) {
104)     output('<p>Folgende Domains sind von dieser Änderung betroffen:</p>
105)             <ul>');
106)     foreach ($domains as $dom) {
107)         output('<li>'.$dom->fqdn.'</li>');
108)     }
109)     output('</ul>');
110) }
111) 
Bernd Wurst Vorbereitung für edit/new

Bernd Wurst authored 6 years ago

112)