vesta/web/list/stats/index.php
2012-11-09 18:26:32 +02:00

24 lines
590 B
PHP

<?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');