summaryrefslogtreecommitdiffstats
path: root/ldap-site-mngmt/webinterface/roles/roles.php
blob: 0ae79cf9b3ea8e82f595ae22b7612024e5d944cb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<?php
include('../standard_header.inc.php');

# 1. Seitentitel - wird in der Titelleiste des Browser angezeigt. 
$titel = "Roles Management";
# 2. Nummer des zugehörigen Hauptmenus (Registerkarte) beginnend bei 0, siehe Dokumentation.doc.
$mainnr = 1;
$mnr = 0; 
# 3. Dateiname und evtl. Pfad des Templates für die Webseite
$webseite = "roles_start.dwt";

include("../class.FastTemplate.php");

include("roles_header.inc.php");

###################################################################################

# Menuleiste erstellen
createMainMenu($rollen, $mainnr);
createRolesMenu($rollen, $mnr, $assocdom);

###################################################################################

include("roles_footer.inc.php");

?>