$plugins = array(
// specify enabled plugins here
+ new AdminerDatabaseHide(array('information_schema')),
new AdminerDumpZip,
new AdminerDumpXml,
//~ new AdminerSqlLog("past-" . rtrim(`git describe --tags --abbrev=0`) . ".sql"),
--- /dev/null
+<?php
+
+/** Hide some databases from the interface - just to improve design, not a security plugin
+* @author Jakub Vrana, http://www.vrana.cz/
+* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License, Version 2.0
+* @license http://www.gnu.org/licenses/gpl-2.0.html GNU General Public License, version 2 (one or other)
+*/
+class AdminerDatabaseHide {
+ protected $disabled;
+
+ /**
+ * @param array case insensitive database names in values
+ */
+ function AdminerDatabaseHide($disabled) {
+ $this->disabled = array_map('strtolower', $disabled);
+ }
+
+ function databases($flush = true) {
+ $return = array();
+ foreach (get_databases($flush) as $db) {
+ if (!in_array(strtolower($db), $this->disabled)) {
+ $return[] = $db;
+ }
+ }
+ return $return;
+ }
+
+}