autocomplete for tables

This commit is contained in:
Marcin Łojewski
2018-06-28 20:16:43 +02:00
parent ffb28c62be
commit ecb04a331b
3 changed files with 12 additions and 5 deletions

View File

@@ -266,7 +266,8 @@ class SettingsController extends Controller
try {
$connection = $this->getConnection();
$platform = PlatformFactory::getPlatform($connection);
$tables = $platform->getTables();
$input = $this->request->getParam("input");
$tables = $platform->getTables($input);
$this->logger->debug(
"Returning tableAutocomplete(): count(" . count($tables) . ")",