summaryrefslogtreecommitdiffstats
path: root/ldap-site-mngmt/webinterface/ip/ip.php
blob: 8a435442b36d3f5e5992d667ec083ac6a642527d (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
27
28
29
<?php

include('../standard_header.inc.php');

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

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

include("ip_header.inc.php");

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

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

include("ip_blocks.inc.php");

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

include("ip_footer.inc.php");

?>