mirror of
https://github.com/serghey-rodin/vesta.git
synced 2025-01-25 20:23:05 -08:00
32 lines
902 B
PHP
32 lines
902 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);
|
|
|
|
// Data
|
|
if ($_SESSION['user'] == 'admin') {
|
|
exec (VESTA_CMD."v-list-databases $user json", $output, $return_var);
|
|
$data = json_decode(implode('', $output), true);
|
|
$data = array_reverse($data);
|
|
unset($output);
|
|
include($_SERVER['DOCUMENT_ROOT'].'/templates/admin/list_db.html');
|
|
} else {
|
|
exec (VESTA_CMD."v-list-databases $user json", $output, $return_var);
|
|
$data = json_decode(implode('', $output), true);
|
|
$data = array_reverse($data);
|
|
unset($output);
|
|
include($_SERVER['DOCUMENT_ROOT'].'/templates/user/list_db.html');
|
|
}
|
|
|
|
// Footer
|
|
include($_SERVER['DOCUMENT_ROOT'].'/templates/footer.html');
|