You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
hestiacp/web/list/user/index.php

37 lines
839 B

<?php
$TAB = "USER";
// Main include
include $_SERVER["DOCUMENT_ROOT"] . "/inc/main.php";
// Do not show the users list for regular users
if ($_SESSION["userContext"] === "user") {
header("Location: /login/");
exit();
}
// Do not show the users list if user is impersonating another user
if (!empty($_SESSION["look"])) {
header("Location: /login/");
exit();
}
// Data
if ($_SESSION["userContext"] === "admin") {
exec(HESTIA_CMD . "v-list-users json", $output, $return_var);
} else {
exec(HESTIA_CMD . "v-list-user " . $user . " json", $output, $return_var);
}
$data = json_decode(implode("", $output), true);
if ($_SESSION["userSortOrder"] == "name") {
ksort($data);
} else {
$data = array_reverse($data, true);
}
// Render page
render_page($user, $TAB, "list_user");
// Back uri
$_SESSION["back"] = $_SERVER["REQUEST_URI"];