summaryrefslogtreecommitdiffstats
path: root/ldap-site-mngmt/webinterface/ip/no_ip.php
blob: 3cf62d81dd0357fe6e4803f5cd8c433a1d275459 (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
30
31
32
33
<?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 = 1; 
# 3. Dateiname und evtl. Pfad des Templates für die Webseite
$webseite = "no_ip.dwt";

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

include("ip_header.inc.php");

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

$mnr = $_GET['mnr'];

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

include("ip_blocks.inc.php");

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

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

include("ip_footer.inc.php");

?>