mirror of
https://github.com/vrana/adminer.git
synced 2026-01-17 21:12:56 +01:00
Add drag-n-drop moving of rows in table selection filter
This commit is contained in:
@@ -250,17 +250,17 @@ class AdminerPlugin extends Adminer {
|
||||
return $this->_applyPlugin(__FUNCTION__, $args);
|
||||
}
|
||||
|
||||
function selectColumnsPrint($select, $columns) {
|
||||
function selectColumnsPrint(array $select, array $columns) {
|
||||
$args = func_get_args();
|
||||
return $this->_applyPlugin(__FUNCTION__, $args);
|
||||
}
|
||||
|
||||
function selectSearchPrint($where, $columns, $indexes) {
|
||||
function selectSearchPrint(array $where, array $columns, array $indexes) {
|
||||
$args = func_get_args();
|
||||
return $this->_applyPlugin(__FUNCTION__, $args);
|
||||
}
|
||||
|
||||
function selectOrderPrint($order, $columns, $indexes) {
|
||||
function selectOrderPrint(array $order, array $columns, array $indexes) {
|
||||
$args = func_get_args();
|
||||
return $this->_applyPlugin(__FUNCTION__, $args);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user