Files
VestaCP/web/list/user/index.php

36 lines
1004 B
PHP
Raw Normal View History

2013-01-18 18:23:04 +04:00
<?php
session_start();
$TAB = 'USER';
2013-01-29 00:18:09 +02:00
// Main include
2013-01-18 18:23:04 +04:00
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);
2013-02-20 14:37:07 +02:00
$data = array_reverse($data,true);
2013-01-18 18:23:04 +04:00
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);
2013-02-20 14:37:07 +02:00
//$data = array_reverse($data,true);
2013-01-18 18:23:04 +04:00
display_error_block();
include($_SERVER['DOCUMENT_ROOT'].'/templates/user/list_user.html');
}
2013-01-29 00:18:09 +02:00
// Back uri
$_SESSION['back'] = $_SERVER['REQUEST_URI'];
2013-01-18 18:23:04 +04:00
// Footer
include($_SERVER['DOCUMENT_ROOT'].'/templates/footer.html');