1
0
mirror of https://github.com/vrana/adminer.git synced 2025-08-13 01:54:00 +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

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.
);
```