Files
VestaCP/web/list/firewall/index.php
2015-12-02 21:30:04 +09:00

33 lines
661 B
PHP

<?php
error_reporting(NULL);
$TAB = 'FIREWALL';
// Main include
include($_SERVER['DOCUMENT_ROOT']."/inc/main.php");
// Check user
if ($_SESSION['user'] != 'admin') {
header("Location: /list/user");
exit;
}
// Header
include($_SERVER['DOCUMENT_ROOT'].'/templates/header.html');
// Panel
top_panel($user,$TAB);
// Data
v_exec('v-list-firewall', ['json'], false, $output);
$data = json_decode($output, true);
$data = array_reverse($data, true);
include($_SERVER['DOCUMENT_ROOT'].'/templates/admin/list_firewall.html');
// Back uri
$_SESSION['back'] = $_SERVER['REQUEST_URI'];
// Footer
include($_SERVER['DOCUMENT_ROOT'].'/templates/footer.html');