\n"; echo "\n"; echo "" . "\n" ; foreach ($fields as $field) { echo "
" . $this->lang('Column') . "" . $this->lang('Type') . "" . $this->lang('Collation') . "" . $this->lang('Nullable') . "" . $this->lang('Default') . (Adminer\support("comment") ? "" . $this->lang('Comment') : "") . "
" . Adminer\h($field["field"]) . ($field["primary"] ? " (PRIMARY)" : ""); echo "" . Adminer\h($field["full_type"]) . ""; echo ($field["auto_increment"] ? " " . $this->lang('Auto Increment') . "" : ""); echo "" . ($field["collation"] ? " " . Adminer\h($field["collation"]) . "" : ""); echo "" . ($field["null"] ? $this->lang('Yes') : $this->lang('No')); echo "" . Adminer\h($field["default"]); echo (Adminer\support("comment") ? "" . Adminer\adminer()->commentValue('COLUMN', $field["comment"]) : ""); echo "\n"; } echo "
\n"; echo "\n"; return true; } protected $translations = array( 'cs' => array( '' => 'Rozšířené informace o tabulkách', 'Column' => 'Sloupec', 'Type' => 'Typ', 'Collation' => 'Porovnávání', 'Comment' => 'Komentář', 'Auto Increment' => 'Auto Increment', ), 'de' => array( '' => 'Erweiterte Ausgabe der Tabellenstruktur', 'Column' => 'Spalte', 'Type' => 'Typ', 'Collation' => 'Kollation', 'Comment' => 'Kommentar', 'Auto Increment' => 'Auto-Inkrement', ), 'pl' => array( '' => 'Rozszerzone wyjście struktury tabeli', 'Column' => 'Kolumna', 'Type' => 'Typ', 'Collation' => 'Porównywanie znaków', 'Comment' => 'Komentarz', 'Auto Increment' => 'Automatyczny przyrost', ), 'ro' => array( '' => 'Ieșirea expandată a structurii tabelei', 'Column' => 'Coloană', 'Type' => 'Tip', 'Collation' => 'Colaționare', 'Comment' => 'Comentariu', 'Auto Increment' => 'Creșterea automată', ), 'ja' => array( '' => 'テーブル構造を拡張表示', 'Column' => 'カラム', 'Type' => '型', 'Collation' => 'コレーション', 'Comment' => 'コメント', 'Auto Increment' => '連番', ), 'hr' => array( '' => 'Prošireni prikaz strukture tablice', 'Column' => 'Stupac', 'Type' => 'Tip', 'Collation' => 'Uspoređivanje', 'Comment' => 'Komentar', 'Auto Increment' => 'Auto-inkrement', ), ); }