" . Adminer\h($name) . " | " . $index['type'];
ksort($index["columns"]); // enforce correct columns order
$print = array();
foreach ($index["columns"] as $key => $val) {
$print[] = "" . Adminer\h($val) . ""
. ($index["lengths"][$key] ? "(" . $index["lengths"][$key] . ")" : "")
. ($index["descs"][$key] ? " DESC" : "")
;
}
echo " | " . implode(", ", $print) . "\n";
}
echo "\n";
return true;
}
protected $translations = array(
'cs' => array('' => 'Rozšířené informace o indexech'),
'de' => array('' => 'Erweiterte Ausgabe der Tabellenindize'),
'pl' => array('' => 'Rozszerzona tabela wyników struktury indeksów'),
'ro' => array('' => 'Ieșirea expandată a structurii indecsilor tabelului'),
'ja' => array('' => 'テーブルのインデックス構造を拡張表示'),
);
}
|
---|