summaryrefslogtreecommitdiffstats
path: root/ldap-site-mngmt/webinterface/au/au_childs.php
diff options
context:
space:
mode:
Diffstat (limited to 'ldap-site-mngmt/webinterface/au/au_childs.php')
-rw-r--r--ldap-site-mngmt/webinterface/au/au_childs.php50
1 files changed, 0 insertions, 50 deletions
diff --git a/ldap-site-mngmt/webinterface/au/au_childs.php b/ldap-site-mngmt/webinterface/au/au_childs.php
deleted file mode 100644
index 7aa5dcb3..00000000
--- a/ldap-site-mngmt/webinterface/au/au_childs.php
+++ /dev/null
@@ -1,50 +0,0 @@
-<?php
-
-include('../standard_header.inc.php');
-
-# Filename of Template
-$webseite = "au_childs.dwt";
-
-include('au_header.inc.php');
-
-###############################################################################
-# Menus
-
-$mnr = 2;
-$sbmnr = -1;
-
-createMainMenu($rollen, $mainnr);
-createAUMenu($rollen, $mnr, $auDN, $sbmnr);
-
-###############################################################################
-# Mainpage Data
-
-$template->assign(array("CHILDOU" => "Noch keine untergordnete AU angelegt",
- "CHILDCN" => "",
- "CHILDDN" => "",
- "CHILDDOMAIN" => "",
- "CHILDDESC" => ""));
-
-$childau_array = get_childau($auDN,array("dn","cn","ou","associateddomain","description","maxipblock"));
-
-$template->define_dynamic("Childaus", "Webseite");
-
-foreach ($childau_array as $childau){
- $auname = "<a href='child_au.php?dn=".$childau['dn']."' class='headerlink'>".$childau['ou']."</a>";
-
- $template->assign(array("CHILDOU" => $auname,
- "CHILDCN" => $childau['cn'],
- "CHILDDN" => $childau['dn'],
- "CHILDDOMAIN" => $childau['associateddomain'],
- "CHILDDESC" => $childau['description'],
- "AUDN" => $auDN));
- $template->parse("CHILDAUS_LIST", ".Childaus");
-}
-
-
-###################################################################################
-# Footer
-
-include("au_footer.inc.php");
-
-?> \ No newline at end of file