DNS-Records für '.filter_input_general($domain->fqdn).''; $records = get_domain_records($domain->id); $auto_records = get_domain_auto_records($domain->fqdn); $output .= ' '; foreach ($records AS $rec) { $data = ( $rec['ip'] ? $rec['ip'] : $rec['data'] ); if ($rec['dyndns']) $data = internal_link('dyndns_edit', 'DynDNS #'.$rec['dyndns'].'', 'id='.$rec['dyndns']); $ttl = ($rec['ttl'] ? $rec['ttl'] : 3600); $output .= "\n"; } foreach ($auto_records AS $rec) { $data = ( $rec['ip'] ? $rec['ip'] : $rec['data'] ); $ttl = ($rec['ttl'] ? $rec['ttl'] : 3600); $output .= "\n"; } $output .= '
HostnameTypIP-Adresse/InhaltTTL 
".internal_link('dns_record_edit', $rec['fqdn'], "id={$rec['id']}")."".strtoupper($rec['type'])."$data{$ttl} Sek.".internal_link('save', 'löschen', "id={$rec['id']}&type=dns&action=delete")."
{$rec['fqdn']}".strtoupper($rec['type'])."$data{$ttl} Sek. 
'; if ($domain->autodns) $output .= '

Kursive Hostnames bezeichnen automatisch erzeugte Records. Diese können nicht geändert werden.

'; else $output .= '

Für diese Domain wurde die Erzeugung automatischer Records deaktiviert.

'; $output .= html_form('dns_record_new', 'dns_record_edit', 'id=new&dom='.$domain->id, '

Neuen DNS-Record anlegen

 '.html_select('type', array('a' => 'A', 'aaaa' => 'AAAA', 'mx' => 'MX', 'ns' => 'NS', 'spf' => 'SPF', 'txt' => 'TXT', 'cname' => 'CNAME', 'ptr' => 'PTR', 'srv' => 'SRV', 'raw' => 'RAW'), 'a').'    

'); ?>