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

12 lines
338 B
PHP
Raw Normal View History

2020-08-04 09:44:59 +00:00
<?php
$HTML = new HTML();
if(@$_SESSION['LOGIN'] == 'true')
{
$HTML->importHTML("style/default/dashboard.html");
if(@$_SESSION['LEVEL'] > 100)
$HTML->importHTML("style/default/dashboard-admin.html");
$HTML->ReplaceLayoutInhalt("%%USERNAME%%", @$_SESSION['DISPLAYNAME']);
}
?>