1
0
mirror of https://github.com/vrana/adminer.git synced 2025-08-13 18:14:07 +02:00

Plugins: Load config from adminer-plugins.php

This commit is contained in:
Jakub Vrana
2025-03-19 05:05:42 +01:00
parent eb1d8d5468
commit df98f2453d
5 changed files with 20 additions and 14 deletions

1
.gitignore vendored
View File

@@ -6,3 +6,4 @@
/editor*.php
/vendor/
adminer-plugins/
adminer-plugins.php

View File

@@ -6,7 +6,8 @@
- CSS: Allow more custom styles with dark mode (bug #925)
- IMAP: New plugin driver created for fun
- Plugins: autoload plugins from adminer-plugins/
- Plugins: configure plugins with adminer-plugins/config.php
- Plugins: configure plugins with adminer-plugins.php
- Plugins: Display loaded plugins in server overview
## Adminer 5.0.6 (released 2025-03-17)
- Align numbers right (bug #912)

View File

@@ -32,19 +32,19 @@ To use a plugin, simply upload it to `adminer-plugins/` next to `adminer.php`.
```
- adminer.php
- adminer-plugins
- config.php
- adminer-plugins/
- dump-xml.php
- login-password-less.php
- ...
- adminer-plugins.php
```
Some plugins require configuration. To use them, you need to create another file in `adminer-plugins/`:
Some plugins require configuration. To use them, create file `adminer-plugins.php`. You can also specify loading order here.
```php
<?php // config.php
require_once __DIR__ . "/login-password-less.php";
<?php // adminer-plugins.php
return array(
new AdminerLoginPasswordLess('$2y$07$Czp9G/aLi3AnaUqpvkF05OHO1LMizrAgMLvnaOdvQovHaRv28XDhG'),
// You can specify all plugins here or just the ones needing configuration.
);
```

View File

@@ -80,7 +80,7 @@ include "./include/adminer.inc.php";
if (function_exists('adminer_object')) {
$adminer = adminer_object();
} elseif (file_exists("adminer-plugins/")) {
} elseif (is_dir("adminer-plugins") || file_exists("adminer-plugins.php")) {
include "./include/plugins.inc.php";
$adminer = new Plugins(null);
} else {

View File

@@ -10,12 +10,16 @@ class Plugins extends Adminer {
function __construct($plugins) {
if ($plugins === null) {
$plugins = array();
foreach (glob("adminer-plugins/*.php") as $filename) {
$include = include_once "./$filename";
if (is_array($include)) { // example: return array(new AdminerLoginOtp($secret))
foreach ($include as $plugin) {
$plugins[get_class($plugin)] = $plugin;
}
$basename = "adminer-plugins";
if (is_dir($basename)) {
foreach (glob("$basename/*.php") as $filename) {
$include = include_once "./$filename";
}
}
if (file_exists("$basename.php")) {
$include = include_once "./$basename.php"; // example: return array(new AdminerLoginOtp($secret))
foreach ($include as $plugin) {
$plugins[get_class($plugin)] = $plugin;
}
}
foreach (get_declared_classes() as $class) {