diff options
| author | Tarik Gasmi | 2007-05-14 09:46:29 +0200 |
|---|---|---|
| committer | Tarik Gasmi | 2007-05-14 09:46:29 +0200 |
| commit | b192e30ee65a420e12b71cbc0b410754983c052e (patch) | |
| tree | 7e1b63e5c932d15d33943e7bab1cba8fe394c7fb /ldap-site-mngmt/webinterface/au/au_header.inc.php | |
| parent | * fixed incorrect execution of chroot with respect to setting up the (diff) | |
| download | core-b192e30ee65a420e12b71cbc0b410754983c052e.tar.gz core-b192e30ee65a420e12b71cbc0b410754983c052e.tar.xz core-b192e30ee65a420e12b71cbc0b410754983c052e.zip | |
Some webinterface data.
git-svn-id: http://svn.openslx.org/svn/openslx/trunk@1076 95ad53e4-c205-0410-b2fa-d234c58c8868
Diffstat (limited to 'ldap-site-mngmt/webinterface/au/au_header.inc.php')
| -rw-r--r-- | ldap-site-mngmt/webinterface/au/au_header.inc.php | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/ldap-site-mngmt/webinterface/au/au_header.inc.php b/ldap-site-mngmt/webinterface/au/au_header.inc.php new file mode 100644 index 00000000..3ba68fc9 --- /dev/null +++ b/ldap-site-mngmt/webinterface/au/au_header.inc.php @@ -0,0 +1,33 @@ +<?php + +# standard header file for AU files + +include("au_menu.php"); +# 1. Title +$titel = "Administrative Unit Management"; +# 2. Mainmenu Number (starting with 0) +$mainnr = 0; + + +$template = new FastTemplate("."); +# dem erstellten Template-Objekt eine Vorlage zuweisen +$definedTemplates = array("Vorlage" => "au.dwt", + "Login" => "../logout_form.inc.dwt", + "Mmenu" => "../hauptmenue.dwt", + "Menu" => "menu.dwt", + "Webseite" => $webseite); + +if (isset($additionalTemplates)) { + foreach ($additionalTemplates as $templateKey => $templateFile) { + $definedTemplates[$templateKey] = $templateFile; + } +} + +$template->define($definedTemplates); +$template->assign(array("SEITENTITEL" => $titel, + "ROLLE" => "mainadmin", + "AU" => $au_ou, + "DOMAIN" => $assocdom, + "USERCN" => $usercn)); + +?>
\ No newline at end of file |
