server_info >= 5.6 ? "|InnoDB" : ""), $table_status["Engine"])) { $index_types[] = "FULLTEXT"; } $indexes = indexes($TABLE); if ($jush == "sqlite") { // doesn't support primary key unset($index_types[0]); unset($indexes[""]); } $row = $_POST; if ($_POST && !$error && !$_POST["add"] && !$_POST["drop_col"]) { $alter = array(); foreach ($row["indexes"] as $index) { $name = $index["name"]; if (in_array($index["type"], $index_types)) { $columns = array(); $lengths = array(); $descs = array(); $set = array(); ksort($index["columns"]); foreach ($index["columns"] as $key => $column) { if ($column != "") { $length = $index["lengths"][$key]; $desc = $index["descs"][$key]; $set[] = idf_escape($column) . ($length ? "(" . (+$length) . ")" : "") . ($desc ? " DESC" : ""); $columns[] = $column; $lengths[] = ($length ? $length : null); $descs[] = $desc; } } if ($columns) { $existing = $indexes[$name]; if ($existing) { ksort($existing["columns"]); ksort($existing["lengths"]); ksort($existing["descs"]); if ($index["type"] == $existing["type"] && array_values($existing["columns"]) === $columns && (!$existing["lengths"] || array_values($existing["lengths"]) === $lengths) && array_values($existing["descs"]) === $descs ) { // skip existing index unset($indexes[$name]); continue; } } $alter[] = array($index["type"], $name, "(" . implode(", ", $set) . ")"); } } } // drop removed indexes foreach ($indexes as $name => $existing) { $alter[] = array($existing["type"], $name, "DROP"); } if (!$alter) { redirect(ME . "table=" . urlencode($TABLE)); } queries_redirect(ME . "table=" . urlencode($TABLE), lang('Indexes have been altered.'), alter_indexes($TABLE, $alter)); } page_header(lang('Indexes'), $error, array("table" => $TABLE), h($TABLE)); $fields = array_keys(fields($TABLE)); if ($_POST["add"]) { foreach ($row["indexes"] as $key => $index) { if ($index["columns"][count($index["columns"])] != "") { $row["indexes"][$key]["columns"][] = ""; } } $index = end($row["indexes"]); if ($index["type"] || array_filter($index["columns"], 'strlen') || array_filter($index["lengths"], 'strlen') || array_filter($index["descs"]) ) { $row["indexes"][] = array("columns" => array(1 => "")); } } if (!$row) { foreach ($indexes as $key => $index) { $indexes[$key]["name"] = $key; $indexes[$key]["columns"][] = ""; } $indexes[] = array("columns" => array(1 => "")); $row["indexes"] = $indexes; } ?>
 
" . html_select("indexes[$j][type]", array(-1 => "") + $index_types, $index["type"], ($j == count($row["indexes"]) ? "indexesAddRow(this);" : 1)); echo ""; ksort($index["columns"]); $i = 1; foreach ($index["columns"] as $key => $column) { echo "" . html_select("indexes[$j][columns][$i]", array(-1 => "") + $fields, $column, ($i == count($index["columns"]) ? "indexesAddColumn" : "indexesChangeColumn") . "(this, '" . js_escape($jush == "sql" ? "" : $_GET["indexes"] . "_") . "');"); echo ($jush == "sql" || $jush == "mssql" ? "" : ""); echo ($jush != "sql" ? checkbox("indexes[$j][descs][$i]", 1, $index["descs"][$key], lang('descending')) : ""); echo " "; $i++; } echo "\n"; echo "\n"; } $j++; } ?>