Plugin to hide databases

This commit is contained in:
Jakub Vrana 2012-02-23 22:56:03 -08:00
parent c7f1a6322e
commit 9e7fcdf32c
2 changed files with 29 additions and 0 deletions

View file

@ -10,6 +10,7 @@ function adminer_object() {
$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"),

28
plugins/database-hide.php Normal file
View file

@ -0,0 +1,28 @@
<?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;
}
}