1
0
Fork 0
Manager/plugins/default-html.php

12 lines
328 B
PHP

<?php
$HTML = new HTML();
if(@$_SESSION['LOGIN'] == 'true')
{
$HTML->importHTML("dashboard.html");
if(@$_SESSION['LEVEL'] > 100)
$HTML->importHTML("dashboard-admin.html");
$HTML->ReplaceLayoutInhalt("%%USERNAME%%", htmlspecialchars(@$_SESSION['DISPLAYNAME']));
}
?>