updated plugins and version; added table filter

This commit is contained in:
Pau Capó 2018-02-17 16:12:52 +01:00
parent b92f7a0a63
commit 8c7fe51582
9 changed files with 1153 additions and 1107 deletions

View file

@ -2,17 +2,17 @@
/** Select foreign key in edit form
* @link https://www.adminer.org/plugins/#use
* @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)
* @author Jakub Vrana, https://www.vrana.cz/
* @license https://www.apache.org/licenses/LICENSE-2.0 Apache License, Version 2.0
* @license https://www.gnu.org/licenses/gpl-2.0.html GNU General Public License, version 2 (one or other)
*/
class AdminerEditForeign {
var $_limit;
function __construct($limit = 0) {
$this->_limit = $limit;
}
function editInput($table, $field, $attrs, $value) {
static $foreignTables = array();
static $values = array();
@ -39,5 +39,5 @@ class AdminerEditForeign {
}
}
}
}
}