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

12 lines
354 B
PHP
Raw Normal View History

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