mirror of
https://github.com/serghey-rodin/vesta.git
synced 2025-02-03 08:33:01 -08:00
35 lines
990 B
PHP
35 lines
990 B
PHP
<?php
|
|
|
|
// Init
|
|
error_reporting(NULL);
|
|
session_start();
|
|
$_SESSION['back'] = $_SERVER['REQUEST_URI'];
|
|
$TAB = 'USER';
|
|
include($_SERVER['DOCUMENT_ROOT']."/inc/main.php");
|
|
|
|
// Header
|
|
include($_SERVER['DOCUMENT_ROOT'].'/templates/header.html');
|
|
|
|
// Panel
|
|
top_panel($user,$TAB);
|
|
|
|
// Data
|
|
if ($_SESSION['user'] == 'admin') {
|
|
$cmd = "v-list-user '".$user."' json";
|
|
if ($user == 'admin') $cmd = "v-list-users json";
|
|
exec (VESTA_CMD.$cmd, $output, $return_var);
|
|
$data = json_decode(implode('', $output), true);
|
|
$data = array_reverse($data);
|
|
display_error_block;
|
|
include($_SERVER['DOCUMENT_ROOT'].'/templates/admin/list_user.html');
|
|
} else {
|
|
exec (VESTA_CMD."v-list-user ".$user." json", $output, $return_var);
|
|
$data = json_decode(implode('', $output), true);
|
|
$data = array_reverse($data);
|
|
display_error_block;
|
|
include($_SERVER['DOCUMENT_ROOT'].'/templates/user/list_user.html');
|
|
}
|
|
|
|
// Footer
|
|
include($_SERVER['DOCUMENT_ROOT'].'/templates/footer.html');
|