From 28cd07d1a75c4e9dcaecac49efee0091f2fc62fa Mon Sep 17 00:00:00 2001
From: A. Täffner <darkalex@firesplash.de>
Date: Thu, 07 Apr 2016 05:30:49 -0400
Subject: [PATCH] Implemented a checkbox "enable DNSSEC" in DNS-Wizard. This Checkbox can be enabled or disabled by template.

---
 interface/web/dns/lib/module.conf.php |   74 +++++++++++++++++++++++++++++++++++++
 1 files changed, 74 insertions(+), 0 deletions(-)

diff --git a/interface/web/dns/lib/module.conf.php b/interface/web/dns/lib/module.conf.php
new file mode 100644
index 0000000..75b17a9
--- /dev/null
+++ b/interface/web/dns/lib/module.conf.php
@@ -0,0 +1,74 @@
+<?php
+
+$module["name"]   = "dns";
+$module["title"]   = "top_menu_dns";
+$module["template"]  = "module.tpl.htm";
+$module["startpage"]  = "dns/dns_soa_list.php";
+$module["tab_width"]    = '';
+$module['order']    = '50';
+
+
+$items[] = array( 'title'  => "Add DNS Zone",
+	'target'  => 'content',
+	'link' => 'dns/dns_wizard.php',
+	'html_id' => 'dns_wizard');
+
+$items[] = array( 'title'  => "Import Zone File",
+	'target'  => 'content',
+	'link' => 'dns/dns_import.php',
+	'html_id' => 'dns_import');
+
+if($_SESSION["s"]["user"]["typ"] == 'admin') {
+	$items[] = array(  'title'  => "Templates",
+		'target'  => 'content',
+		'link'  => 'dns/dns_template_list.php',
+		'html_id' => 'dns_template_list');
+}
+
+
+$module["nav"][] = array( 'title' => 'DNS Wizard',
+	'open'  => 1,
+	'items' => $items);
+
+
+unset($items);
+
+/*
+	Email accounts menu
+*/
+
+
+$items[] = array( 'title'  => "Zones",
+	'target'  => 'content',
+	'link' => 'dns/dns_soa_list.php',
+	'html_id' => 'dns_soa_list');
+/*
+$items[] = array( 'title' 	=> "A-Records",
+				  'target' 	=> 'content',
+				  'link'	=> 'dns/dns_a_list.php',
+				  'html_id' => 'dns_a_list');
+*/
+
+
+$module["nav"][] = array( 'title' => 'DNS',
+	'open'  => 1,
+	'items' => $items);
+
+unset($items);
+
+$items[] = array( 'title'  => "Secondary Zones",
+	'target'  => 'content',
+	'link' => 'dns/dns_slave_list.php',
+	'html_id' => 'dns_slave_list');
+
+$module["nav"][] = array( 'title' => 'Secondary DNS',
+	'open'  => 1,
+	'items' => $items);
+
+unset($items);
+
+
+
+
+
+?>

--
Gitblit v1.9.1