/usr/share/phpmyadmin/libraries/classes/Controllers
Edit: /usr/share/phpmyadmin/libraries/classes/Controllers/TableController.php (867B)
dbi = $dbi;
}
public function all(): void
{
if (! isset($_POST['db'])) {
$this->response->setRequestStatus(false);
$this->response->addJSON(['message' => Message::error()]);
return;
}
$this->response->addJSON(['tables' => $this->dbi->getTables($_POST['db'])]);
}
}