VPN-Management-GUI 2.0.3 porting start

This commit is contained in:
2012-07-16 19:30:19 +00:00
commit d3b0130655
545 changed files with 19128 additions and 0 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 19 KiB

BIN
Admin/Modules/Home/img/tux.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 74 KiB

30
Admin/Modules/Home/index.php Executable file
View File

@@ -0,0 +1,30 @@
<?php
include ($_SERVER["DOCUMENT_ROOT"]."/Site/checkadmin.php");
//include ($_SERVER["DOCUMENT_ROOT"]."/Config/_siteconfig_.php");
?>
<!-- MAIN CONTENT BEGINN ################################################################################ -->
<h1><b>Administration Center</b></h1>
<table>
<tr><td width=60%>
<h2>Actions:</h2>
<?php
$moduleid = 0;
foreach ($SITE_MODULES_ADMIN as $modul)
{
$moduleid++;
$cut = strpos($modul, "#");
$modtitle = substr($modul,0,$cut);
echo "<a href=\"/Admin/index.php?site=".$moduleid."&uebergabe=0&uebergabe2=0&uebergabe3=0&uebergabe4=0\">
<p># ".$modtitle."</p>
</a>";
}
?>
<a href ="/sql/"><p># PhpMyAdmin</p></a>
</td>
<td>
<img src="/Admin/Modules/Home/img/tux.png">
</td>
</tr>
</table>