myvesta/web/list/ip/index.php
2016-07-02 21:40:46 +09:00

26 lines
494 B
PHP

<?php
error_reporting(NULL);
$TAB = 'IP';
// Main include
include($_SERVER['DOCUMENT_ROOT']."/inc/main.php");
// Check user
if ($_SESSION['user'] != 'admin') {
header('Location: /list/user');
exit;
}
// Data
exec (VESTA_CMD."v-list-sys-ips json", $output, $return_var);
$data = json_decode(implode('', $output), true);
$data = array_reverse($data, true);
unset($output);
// Render page
render_page($user, $TAB, 'list_ip');
// Back uri
$_SESSION['back'] = $_SERVER['REQUEST_URI'];