vesta/web/list/log/index.php
2012-11-14 02:14:32 +02:00

29 lines
702 B
PHP

<?php
// Init
error_reporting(NULL);
session_start();
$TAB = 'LOG';
include($_SERVER['DOCUMENT_ROOT']."/inc/main.php");
// Header
include($_SERVER['DOCUMENT_ROOT'].'/templates/header.html');
// Panel
top_panel($user,$TAB);
// Data
if ($_SESSION['user'] == 'admin') {
exec (VESTA_CMD."v-list-user-log $user json", $output, $return_var);
check_error($return_var);
$data = json_decode(implode('', $output), true);
$data = array_reverse($data);
unset($output);
include($_SERVER['DOCUMENT_ROOT'].'/templates/admin/menu_log.html');
include($_SERVER['DOCUMENT_ROOT'].'/templates/admin/list_log.html');
}
// Footer
include($_SERVER['DOCUMENT_ROOT'].'/templates/footer.html');