| 123456789101112131415161718192021222324252627282930 |
- <?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
- exec (VESTA_CMD."v-list-user-packages json", $output, $return_var);
- $data = json_decode(implode('', $output), true);
- unset($output);
- include($_SERVER['DOCUMENT_ROOT'].'/templates/admin/list_packages.html');
- // Back uri
- $_SESSION['back'] = $_SERVER['REQUEST_URI'];
- // Footer
- include($_SERVER['DOCUMENT_ROOT'].'/templates/footer.html');
|