mirror of
https://github.com/vrana/adminer.git
synced 2025-08-11 00:54:08 +02:00
38 lines
1.5 KiB
PHP
38 lines
1.5 KiB
PHP
<?php
|
|
|
|
/** Expanded table indexes structure output
|
|
* @link https://www.adminer.org/plugins/#use
|
|
* @author Matthew Gamble, https://www.matthewgamble.net/
|
|
* @license https://www.apache.org/licenses/LICENSE-2.0 Apache License, Version 2.0
|
|
* @license https://www.gnu.org/licenses/gpl-2.0.html GNU General Public License, version 2 (one or other)
|
|
*/
|
|
class AdminerTableIndexesStructure extends Adminer\Plugin {
|
|
|
|
function tableIndexesPrint($indexes, $tableStatus): bool {
|
|
echo "<table>\n";
|
|
echo "<thead><tr><th>" . Adminer\lang('Name') . "<th>" . Adminer\lang('Type') . "<th>" . Adminer\lang('Algorithm') . "<th>" . Adminer\lang('Columns') . "</thead>\n";
|
|
foreach ($indexes as $name => $index) {
|
|
echo "<tr><th>" . Adminer\h($name) . "<td>$index[type]<td>$index[algorithm]";
|
|
ksort($index["columns"]); // enforce correct columns order
|
|
$print = array();
|
|
foreach ($index["columns"] as $key => $val) {
|
|
$print[] = "<i>" . Adminer\h($val) . "</i>"
|
|
. ($index["lengths"][$key] ? "(" . $index["lengths"][$key] . ")" : "")
|
|
. ($index["descs"][$key] ? " DESC" : "")
|
|
;
|
|
}
|
|
echo "<td>" . implode(", ", $print) . "\n";
|
|
}
|
|
echo "</table>\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('' => 'テーブルのインデックス構造を拡張表示'),
|
|
);
|
|
}
|