menu = Adminer\get_setting("menu", "adminer_config") ?: $menu; } function config() { $options = array( 'select' => Adminer\lang('Select'), 'table' => Adminer\lang('Table'), '' => $this->lang('Both'), 'auto' => $this->lang('Auto (Select on select page, Table otherwise)'), ); return array($this->lang('Menu table links') => Adminer\html_radios('menu', $options, $this->menu, "
")); } function tablesPrint(array $tables) { $menu = $this->menu; $titles = array( 'select' => Adminer\lang('Select data'), 'table' => Adminer\lang('Show structure'), ); // this is copied from Adminer::tablesPrint() echo "\n"; return true; } protected static $translations = array( 'cs' => array( 'Menu table links' => 'Odkazy na tabulky v menu', 'Both' => 'Oboje', 'Auto (Select on select page, Table otherwise)' => 'Auto (Vypsat na výpisech, jinak Tabulka)', ), ); }