mirror of
https://github.com/icecoder/ICEcoder.git
synced 2026-02-20 01:51:18 +01:00
15 lines
331 B
PHP
15 lines
331 B
PHP
<?php
|
|
function adminer_object() {
|
|
include_once "./adminer-plugins/plugin.php";
|
|
include_once "./adminer-plugins/frames.php";
|
|
|
|
$plugins = array(
|
|
new AdminerFrames()
|
|
);
|
|
|
|
return new AdminerPlugin($plugins);
|
|
}
|
|
|
|
// include original Adminer or Adminer Editor
|
|
include "./database-adminer-480-en.php";
|
|
?>
|