vesta/web/list/db/index.php
Serghey Rodin 003036434c i18n support
2013-01-22 18:43:07 +02:00

31 lines
755 B
PHP

<?php
// Init
error_reporting(NULL);
session_start();
$TAB = 'DB';
$_SESSION['back'] = $_SERVER['REQUEST_URI'];
include($_SERVER['DOCUMENT_ROOT']."/inc/main.php");
// Header
include($_SERVER['DOCUMENT_ROOT'].'/templates/header.html');
// Panel
top_panel($user,$TAB);
$lang = 'ru_RU.utf8';
setlocale(LC_ALL, $lang);
// Data
exec (VESTA_CMD."v-list-databases $user json", $output, $return_var);
$data = json_decode(implode('', $output), true);
$data = array_reverse($data);
unset($output);
if ($_SESSION['user'] == 'admin') {
include($_SERVER['DOCUMENT_ROOT'].'/templates/admin/list_db.html');
} else {
include($_SERVER['DOCUMENT_ROOT'].'/templates/user/list_db.html');
}
// Footer
include($_SERVER['DOCUMENT_ROOT'].'/templates/footer.html');