mirror of
https://github.com/serghey-rodin/vesta.git
synced 2026-07-14 22:23:22 +02:00
30 lines
627 B
PHP
30 lines
627 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;
|
|
}
|
|
|
|
// Header
|
|
include($_SERVER['DOCUMENT_ROOT'].'/templates/header.html');
|
|
|
|
// Panel
|
|
top_panel($user,$TAB);
|
|
|
|
// Data
|
|
v_exec('v-list-user-packages', ['json'], false, $output);
|
|
$data = json_decode($output, true);
|
|
include($_SERVER['DOCUMENT_ROOT'].'/templates/admin/list_packages.html');
|
|
|
|
// Back uri
|
|
$_SESSION['back'] = $_SERVER['REQUEST_URI'];
|
|
|
|
// Footer
|
|
include($_SERVER['DOCUMENT_ROOT'].'/templates/footer.html');
|