mirror of
https://github.com/myvesta/vesta.git
synced 2024-11-21 13:00:11 -08:00
25 lines
475 B
PHP
25 lines
475 B
PHP
<?php
|
|
error_reporting(NULL);
|
|
|
|
$TAB = 'PACKAGE';
|
|
|
|
// Main include
|
|
include($_SERVER['DOCUMENT_ROOT']."/inc/main.php");
|
|
|
|
// Check user
|
|
if ($_SESSION['user'] != 'admin') {
|
|
header("Location: /list/user");
|
|
exit;
|
|
}
|
|
|
|
// Data
|
|
exec (VESTA_CMD."v-list-user-packages json", $output, $return_var);
|
|
$data = json_decode(implode('', $output), true);
|
|
unset($output);
|
|
|
|
// Render page
|
|
render_page($user, $TAB, 'list_packages');
|
|
|
|
// Back uri
|
|
$_SESSION['back'] = $_SERVER['REQUEST_URI'];
|