24 lines
537 B
PHP
24 lines
537 B
PHP
<?php
|
|
|
|
ini_set('display_errors', 0);
|
|
ini_set('display_startup_errors', 0);
|
|
error_reporting(0);
|
|
|
|
//function adminer_object() {
|
|
// include_once "./plugin.php";
|
|
// $plugins = array();
|
|
//
|
|
// foreach (glob("plugins/*.php") as $filename) {
|
|
// include_once "./$filename";
|
|
// $plugin = str_replace('plugins/', '', $filename);
|
|
// $plugin = str_replace('.php', '', $plugin);
|
|
// $plugins[] = new $plugin();
|
|
// }
|
|
//
|
|
// return new AdminerPlugin($plugins);
|
|
//}
|
|
|
|
$_SESSION["lang"] = 'en';
|
|
$_COOKIE["adminer_lang"] = 'en';
|
|
|
|
include "./adminer.php";
|