mirror of
https://github.com/myvesta/vesta.git
synced 2024-11-23 14:00:24 -08:00
17 lines
365 B
PHP
17 lines
365 B
PHP
<?php
|
|
error_reporting(NULL);
|
|
$TAB = 'LOG';
|
|
|
|
// Main include
|
|
include($_SERVER['DOCUMENT_ROOT']."/inc/main.php");
|
|
|
|
// Data
|
|
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);
|
|
|
|
// Render page
|
|
render_page($user, $TAB, 'list_log');
|