response->setRequestStatus(false); $this->response->addJSON('message', __('No column selected.')); return; } Util::checkParameters(['db', 'table']); $urlParams = ['db' => $this->db, 'table' => $this->table]; $errorUrl = Util::getScriptNameForOption($cfg['DefaultTabTable'], 'table'); $errorUrl .= Url::getCommon($urlParams, '&'); DbTableExists::check(); $this->render('table/structure/drop_confirm', [ 'db' => $this->db, 'table' => $this->table, 'fields' => $selected, ]); } }