relation = $relation; $this->transformations = $transformations; $this->dbi = $dbi; } public function __invoke(): void { if (isset($_GET['change_column'])) { $this->displayHtmlForColumnChange(null); return; } $selected = $_POST['selected_fld'] ?? []; if (empty($selected)) { $this->response->setRequestStatus(false); $this->response->addJSON('message', __('No column selected.')); return; } $this->displayHtmlForColumnChange($selected); } /** * Displays HTML for changing one or more columns * * @param array|null $selected the selected columns */ private function displayHtmlForColumnChange(?array $selected): void { global $action, $num_fields; if (empty($selected)) { $selected[] = $_REQUEST['field']; $selected_cnt = 1; } else { // from a multiple submit $selected_cnt = count($selected); } /** * @todo optimize in case of multiple fields to modify */ $fields_meta = []; for ($i = 0; $i < $selected_cnt; $i++) { $value = $this->dbi->getColumn($this->db, $this->table, $selected[$i], true); if (count($value) === 0) { $message = Message::error( __('Failed to get description of column %s!') ); $message->addParam($selected[$i]); $this->response->addHTML($message->getDisplay()); } else { $fields_meta[] = $value; } } $num_fields = count($fields_meta); $action = Url::getFromRoute('/table/structure/save'); /** * Form for changing properties. */ $checkUserPrivileges = new CheckUserPrivileges($this->dbi); $checkUserPrivileges->getPrivileges(); $this->addScriptFiles(['vendor/jquery/jquery.uitablefilter.js', 'indexes.js']); $templateData = ColumnsDefinition::displayForm( $this->transformations, $this->relation, $this->dbi, $action, $num_fields, null, $selected, $fields_meta ); $this->render('columns_definitions/column_definitions_form', $templateData); } }