summaryrefslogtreecommitdiffstats
path: root/ldap-site-mngmt/webinterface/dns/dns_header.inc.php
diff options
context:
space:
mode:
Diffstat (limited to 'ldap-site-mngmt/webinterface/dns/dns_header.inc.php')
-rw-r--r--ldap-site-mngmt/webinterface/dns/dns_header.inc.php14
1 files changed, 10 insertions, 4 deletions
diff --git a/ldap-site-mngmt/webinterface/dns/dns_header.inc.php b/ldap-site-mngmt/webinterface/dns/dns_header.inc.php
index 34632b37..b6dfd984 100644
--- a/ldap-site-mngmt/webinterface/dns/dns_header.inc.php
+++ b/ldap-site-mngmt/webinterface/dns/dns_header.inc.php
@@ -1,8 +1,12 @@
<?php
-include("dns_menu.php");
-$template = new FastTemplate(".");
+# 1. Seitentitel - wird in der Titelleiste des Browser angezeigt.
+$titel = "DNS Zone Management";
+# 2. Nummer des zugehörigen Hauptmenus (Registerkarte) beginnend bei 0, siehe Dokumentation.doc.
+$mainnr = 4;
+
+$template = new FastTemplate(".");
# dem erstellten Template-Objekt eine Vorlage zuweisen
$definedTemplates = array("Vorlage" => "dns.dwt",
"Login" => "../logout_form.inc.dwt",
@@ -15,7 +19,9 @@ if (isset($additionalTemplates)) {
}
}
$template->define($definedTemplates);
-
$template->assign(array("SEITENTITEL" => $titel, "ROLLE" => "mainadmin", "AU" => $au_ou, "DOMAIN" => $assocdom, "USERCN" => $usercn));
-
+
+
+include("dns_menu.php");
+
?> \ No newline at end of file