| 1234567891011121314151617181920212223 |
- <?php
- // Init
- error_reporting(NULL);
- session_start();
- $TAB = 'STATS';
- $_SESSION['back'] = $_SERVER['REQUEST_URI'];
- include($_SERVER['DOCUMENT_ROOT']."/inc/main.php");
- // Header
- include($_SERVER['DOCUMENT_ROOT'].'/templates/header.html');
- // Panel
- top_panel($user,$TAB);
- // Data
- exec (VESTA_CMD."v-list-user-stats $user json", $output, $return_var);
- $data = json_decode(implode('', $output), true);
- $data = array_reverse($data);
- unset($output);
- include($_SERVER['DOCUMENT_ROOT'].'/templates/admin/list_stats.html');
- // Footer
- include($_SERVER['DOCUMENT_ROOT'].'/templates/footer.html');
|