From: Jakub Vrana Date: Tue, 24 May 2011 15:35:57 +0000 (+0200) Subject: Plugin tables filter X-Git-Tag: v3.3.0~64 X-Git-Url: https://git.joonet.de/?a=commitdiff_plain;h=5bc419ef3230f4d3028b1c5425237a7f00a13ea1;p=adminer.git Plugin tables filter --- diff --git a/adminer/plugin.php b/adminer/plugin.php index b6f7e5ed..5d60a854 100644 --- a/adminer/plugin.php +++ b/adminer/plugin.php @@ -19,6 +19,7 @@ function adminer_object() { new AdminerTranslation, new AdminerForeignSystem, new AdminerEnumOption, + new AdminerTablesFilter, ); /* It is possible to combine customization and plugins: diff --git a/plugins/tables-filter.php b/plugins/tables-filter.php new file mode 100644 index 00000000..6b00a653 --- /dev/null +++ b/plugins/tables-filter.php @@ -0,0 +1,33 @@ + + +

+\n"; + foreach ($tables as $table => $type) { + echo '" . lang('select') . " "; + echo '" . h($table) . "
\n"; + } + return true; + } + +}