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

Display loaded plugins

This commit is contained in:
Jakub Vrana
2025-03-18 22:18:17 +01:00
parent ea3da56b6d
commit eb1d8d5468
4 changed files with 6 additions and 1 deletions

View File

@@ -44,6 +44,9 @@ if (
}
echo "<p>" . lang('%s version: %s through PHP extension %s', $drivers[DRIVER], "<b>" . h($connection->server_info) . "</b>", "<b>$connection->extension</b>") . "\n";
echo "<p>" . lang('Logged as: %s', "<b>" . h(logged_user()) . "</b>") . "\n";
if (is_array($adminer->plugins)) {
echo "<p>" . lang('Loaded plugins') . ": <b>" . implode("</b>, <b>", array_map('get_class', $adminer->plugins)) . "</b>\n";
}
$databases = $adminer->databases();
if ($databases) {
$scheme = support("scheme");