Menu

[r44]: / developer.php  Maximize  Restore  History

Download this file

35 lines (25 with data), 648 Bytes

 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
<?php
session_start();
require_once("include/defines.php");
require_once("include/html.php");
require_once("modules/dashboard.php");
require_once("modules/site.php");
site_CheckAccessRights();
// Input variables for show_site()
$pageTitle = "ISTT - Developer";
$userGroup = "DEVELOPER VIEW";
$height = "500px";
$headline = "";
$text = "";
if( ! isset( $_REQUEST["id"] ) )
{
$text = dashboard();
}
else
{
// link is clicked
$link = $_REQUEST["id"];
require("include/links.php");
}
show_site( $height, $pageTitle, $headline, $text, $userGroup );
?>