From 334a9f66939fe7462357504fbfc2c712c52f7f7f Mon Sep 17 00:00:00 2001 From: tbrehm <t.brehm@ispconfig.org> Date: Wed, 09 Jul 2008 15:02:29 -0400 Subject: [PATCH] --- interface/web/dns/lib/module.conf.php | 52 ++++++++++++++++++++++++++-------------------------- 1 files changed, 26 insertions(+), 26 deletions(-) diff --git a/interface/web/dns/lib/module.conf.php b/interface/web/dns/lib/module.conf.php index ea7d08d..41e6d05 100644 --- a/interface/web/dns/lib/module.conf.php +++ b/interface/web/dns/lib/module.conf.php @@ -1,27 +1,27 @@ -<?php -$module = array ( - 'name' => 'dns', - 'title' => 'DNS', - 'template' => 'module.tpl.htm', - 'navframe_page' => '', - 'startpage' => 'dns/soa_list.php', - 'tab_width' => '', - 'nav' => - array ( - 0 => - array ( - 'title' => 'Zones', - 'open' => 1, - 'items' => - array ( - 0 => - array ( - 'title' => 'SOA', - 'target' => 'content', - 'link' => 'dns/soa_list.php', - ), - ), - ), - ), -) +<?php + +$module["name"] = "dns"; +$module["title"] = "DNS"; +$module["template"] = "module.tpl.htm"; +$module["startpage"] = "dns/dns_soa_list.php"; +$module["tab_width"] = ''; + +/* + Email accounts menu +*/ + + +$items[] = array( 'title' => "Zones", + 'target' => 'content', + 'link' => 'dns/dns_soa_list.php'); +/* +$items[] = array( 'title' => "A-Records", + 'target' => 'content', + 'link' => 'dns/dns_a_list.php'); +*/ + + +$module["nav"][] = array( 'title' => 'DNS', + 'open' => 1, + 'items' => $items); ?> \ No newline at end of file -- Gitblit v1.9.1