Hanno Böck This code is published under a 0BSD license. 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. */ require_once('contacts.php'); require_once('inc/debug.php'); require_once('inc/jquery.php'); javascript(); require_once('session/start.php'); require_role([ROLE_CUSTOMER]); $section = 'contacts_list'; $new = false; if ($_REQUEST['id'] == 'new') { title("Adresse anlegen"); $new = true; } else { title("Adresse bearbeiten"); } $c = new_contact(); if (! $new) { $c = get_contact($_REQUEST['id']); } elseif (isset($_REQUEST['copy'])) { $c = get_contact($_REQUEST['copy']); $c['nic_handle'] = null; } $domains = domainlist_by_contact($c); $readonly = ''; // Wenn das Handle beim NIC angemeldet ist, kann man Name und Land nicht mehr ändern if ($c['nic_handle'] != null) { $readonly = ' disabled="disabled" '; output('

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.

'); } if (isset($_REQUEST['domainholder']) && $_REQUEST['domainholder'] == 1) { output('

Für einen Domaininhaber muss mindestens Name, vollständige Adresse, E-Mail-Adresse und Telefonnummer angegeben werden.

'); } $odd = false; $html = ''; $buttons = ' '; $html .= ' '; $html .= ' '; $odd = !$odd; $html .= ''; $odd = !$odd; $html .= ''; $odd = !$odd; $html .= ''; $odd = !$odd; $html .= ''; $odd = !$odd; $html .= ''; $odd = !$odd; $html .= ''; $odd = !$odd; $html .= ''; $odd = !$odd; $html .= ''; $odd = !$odd; if ($domains) { $html .= ''; } $buttons = ' '; $html .= ''; $html .= ''; $odd = !$odd; $html .= ''; $odd = !$odd; $html .= ''; $html .= '
Bevorzugte Anrede:'.$buttons.'
Firmenname:
'.($c['company'] ? 'Ansprechpartner' : 'Name').':
-
'.$buttons.'
 
'; $back = 'list'; if (isset($_REQUEST['back'])) { $back = urldecode($_REQUEST['back']); } $domainholder = ''; if (isset($_REQUEST['domainholder']) && $_REQUEST['domainholder'] == 1) { $domainholder='&domainholder=1'; } output(html_form('contacts_edit', 'save', 'id='.$_REQUEST['id']."&back=".urlencode($back).$domainholder, $html)); if ($domains) { output('

Folgende Domains sind von dieser Änderung betroffen:

'); }