Added passenger_manager commands

This commit is contained in:
Alexey Berezhok
2024-12-11 23:46:22 +03:00
parent 4905975d79
commit 4a10c586e1
4 changed files with 108 additions and 5 deletions

View File

@@ -0,0 +1,24 @@
<?php
$TAB = "EXTMODULES";
// Main include
include $_SERVER["DOCUMENT_ROOT"] . "/inc/main.php";
// Check user
if ($_SESSION["userContext"] != "admin") {
header("Location: /list/user");
exit();
}
// Data
exec(HESTIA_CMD . "v-ext-modules-run passenger_manager get_rubys json", $output, $return_var);
$rubys = json_decode(implode("", $output), true);
ksort($rubys);
unset($output);
// Render page
render_page($user, $TAB, "extmodules_passenger_manager");
// Back uri
$_SESSION["back"] = $_SERVER["REQUEST_URI"];