devilbox/.devilbox/www/htdocs/databases.php

115 lines
2.8 KiB
PHP
Raw Normal View History

2016-10-22 15:38:21 +00:00
<?php $CONNECT = TRUE; require '../config.php'; ?>
2016-10-09 16:47:49 +00:00
<!DOCTYPE html>
<html lang="en">
<head>
2016-10-22 14:39:08 +00:00
<?php require '../include/head.php'; ?>
2016-10-09 16:47:49 +00:00
</head>
<body>
2016-10-22 14:39:08 +00:00
<?php require '../include/navigation.php'; ?>
2016-10-09 16:47:49 +00:00
<div class="container">
<h1>Databases</h1>
<div class="row">
<div class="col-md-12">
2016-10-22 15:38:21 +00:00
<table class="table table-striped ">
<thead class="thead-inverse ">
2016-10-09 16:47:49 +00:00
<tr>
<th>Name</th>
2016-10-10 11:06:47 +00:00
<th>Charset</th>
<th>Collation</th>
<th>Tables</th>
2016-10-09 16:47:49 +00:00
<th>Size</th>
</th>
</thead>
<tbody>
2016-10-22 15:38:21 +00:00
<?php foreach (getDatabases() as $name => $keys): ?>
2016-10-09 16:47:49 +00:00
<tr>
<td><?php echo $name;?></td>
2016-10-10 11:06:47 +00:00
<td><?php echo $keys['charset'];?></td>
<td><?php echo $keys['collation'];?></td>
<td><code><span class="table" id="table-<?php echo $name;?>">&nbsp;&nbsp;&nbsp;&nbsp;</span></code></td>
<td><code><span class="size" id="size-<?php echo $name;?>">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span></code></td>
2016-10-09 16:47:49 +00:00
</tr>
<input type="hidden" name="database[]" class="database" value="<?php echo $name;?>" />
2016-10-09 16:47:49 +00:00
<?php endforeach; ?>
</tbody>
</table>
2016-10-22 14:39:08 +00:00
2016-10-09 16:47:49 +00:00
</div>
</div>
</div><!-- /.container -->
<?php require '../include/footer.php'; ?>
2016-10-10 11:06:47 +00:00
<script>
// self executing function here
(function() {
// your page initialization code here
// the DOM will be available here
function updateSizes(database) {
var xhttp = new XMLHttpRequest();
xhttp.onreadystatechange = function() {
var fill = '';
var res = '';
var len;
var i;
if (this.readyState == 4 && this.status == 200) {
res = (this.responseText) == 0 ? '0sss MB' : this.responseText+' MB';
len = res.length;
if (len < 8) {
for (i=len; i<8; i++) {
fill = '&nbsp;' + fill;
}
}
res = res.replace('sss', '&nbsp;&nbsp;&nbsp;');
res = fill + res;
document.getElementById('size-' + database).innerHTML = res;
}
};
xhttp.open('GET', '_ajax_db.php?size=' + database, true);
xhttp.send();
}
function updateCount(database) {
var xhttp = new XMLHttpRequest();
2016-10-10 11:06:47 +00:00
xhttp.onreadystatechange = function() {
var fill = '';
var i;
2016-10-10 11:06:47 +00:00
if (this.readyState == 4 && this.status == 200) {
if (this.responseText.length < 4) {
for (i=this.responseText.length; i<4; i++) {
fill = '&nbsp;' + fill;
}
}
document.getElementById('table-' + database).innerHTML = fill + this.responseText;
2016-10-10 11:06:47 +00:00
}
};
xhttp.open('GET', '_ajax_db.php?table=' + database, true);
2016-10-10 11:06:47 +00:00
xhttp.send();
}
var databases = document.getElementsByName('database[]');
2016-10-10 11:06:47 +00:00
var database;
2016-10-10 11:06:47 +00:00
for (i = 0; i < databases.length; i++) {
database = databases[i].value;
2016-10-10 11:06:47 +00:00
updateSizes(database);
updateCount(database);
2016-10-10 11:06:47 +00:00
}
})();
</script>
2016-10-09 16:47:49 +00:00
</body>
</html>