1
0
mirror of https://github.com/vrana/adminer.git synced 2025-08-16 03:24:01 +02:00

Separate printing databases in customization

This commit is contained in:
Jakub Vrana
2012-08-20 22:03:39 -07:00
parent 364dcfe632
commit beafccb8c3
2 changed files with 35 additions and 20 deletions

View File

@@ -553,6 +553,7 @@ ORDER BY ORDINAL_POSITION", null, "") as $row) { //! requires MySQL 5
</p>
</form>
<?php
$this->databasesPrint($missing);
if ($missing != "db" && $missing != "ns") {
$table_status = table_status();
if (!$table_status) {
@@ -564,6 +565,9 @@ ORDER BY ORDINAL_POSITION", null, "") as $row) { //! requires MySQL 5
}
}
function databasesPrint($missing) {
}
function tablesPrint($tables) {
echo "<p id='tables' onmouseover='menuOver(this);' onmouseout='menuOut(this);'>\n";
foreach ($tables as $row) {