Files
VestaCP/web/list/web/index.php
2016-08-09 19:21:45 +03:00

19 lines
460 B
PHP

<?php
error_reporting(NULL);
$TAB = 'WEB';
// Main include
include($_SERVER['DOCUMENT_ROOT']."/inc/main.php");
// Data
exec (VESTA_CMD."v-list-web-domains $user json", $output, $return_var);
$data = json_decode(implode('', $output), true);
$data = array_reverse($data,true);
$ips = json_decode(shell_exec(VESTA_CMD.'v-list-sys-ips json'), true);
// Render page
render_page($user, $TAB, 'list_web');
// Back uri
$_SESSION['back'] = $_SERVER['REQUEST_URI'];