(2010-) * @license GPLv2 http://files.froxlor.org/misc/COPYING.txt * @package Formfields * */ return array( 'dns_add' => array( 'title' => 'DNS Editor', 'image' => 'fa-solid fa-globe', 'sections' => array( 'section_a' => array( 'fields' => array( 'dns_record' => array( 'label' => 'Record', 'type' => 'text', 'value' => $record, 'mandatory' => true ), 'dns_type' => array( 'label' => 'Type', 'type' => 'select', 'select_var' => [ 'A' => 'A', 'AAAA' => 'AAAA', 'CAA' => 'CAA', 'CNAME' => 'CNAME', 'DNAME' => 'DNAME', 'LOC' => 'LOC', 'MX' => 'MX', 'NS' => 'NS', 'RP' => 'RP', 'SRV' => 'SRV', 'SSHFP' => 'SSHFP', 'TXT' => 'TXT' ], 'selected' => $type ), 'dns_mxp' => array( 'label' => 'Priority', 'type' => 'number', 'value' => $prio ), 'dns_content' => array( 'label' => 'Content', 'type' => 'text', 'value' => $content ), 'dns_ttl' => array( 'label' => 'TTL', 'type' => 'number', 'min' => 30, 'value' => $ttl ) ) ) ) ) );