Add drag-n-drop moving of rows in table selection filter

This commit is contained in:
Peter Knut
2024-10-14 00:49:57 +02:00
parent 7997331b77
commit b9cdf52ec5
6 changed files with 228 additions and 91 deletions

View File

@@ -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);
}