mirror of
https://github.com/myvesta/vesta
synced 2025-08-14 02:28:05 -07:00
panel min heght
This commit is contained in:
parent
72066c5291
commit
7bfebfff62
19 changed files with 155 additions and 14 deletions
|
@ -26,6 +26,15 @@ if ($_SESSION['user'] == 'admin') {
|
|||
|
||||
include($_SERVER['DOCUMENT_ROOT'].'/templates/admin/menu_user.html');
|
||||
include($_SERVER['DOCUMENT_ROOT'].'/templates/admin/list_user.html');
|
||||
} else {
|
||||
exec (VESTA_CMD."v_list_user ".$user." json", $output, $return_var);
|
||||
check_error($return_var);
|
||||
$data = json_decode(implode('', $output), true);
|
||||
$data = array_reverse($data);
|
||||
unset($output);
|
||||
|
||||
include($_SERVER['DOCUMENT_ROOT'].'/templates/user/menu_user.html');
|
||||
include($_SERVER['DOCUMENT_ROOT'].'/templates/user/list_user.html');
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue