* @return null
*/
function navigation($missing) {
- global $VERSION, $connection, $token;
+ global $VERSION, $connection, $token, $driver;
?>
<h1>
<a href="http://www.adminer.org/" id="h1"><?php echo $this->name(); ?></a>
echo "<p class='message'>" . lang('No tables.') . "\n";
} else {
$this->tablesPrint($tables);
+ $links = array();
+ foreach ($tables as $table => $type) {
+ $links[] = preg_quote($table, '/');
+ }
+ echo "<script type='text/javascript'>\n";
+ echo "var jushLinks = { $driver: [ '" . addcslashes(h(ME), "\\'/") . "table=\$&', /\\b(" . implode("|", $links) . ")\\b/g ] };\n";
+ echo "jushLinks.bac = jushLinks.$driver;\n";
+ echo "jushLinks.bra = jushLinks.$driver;\n";
+ echo "jushLinks.mssql_bra = jushLinks.$driver;\n";
+ echo "jushLinks.sqlite_quo = jushLinks.$driver;\n";
+ echo "</script>\n";
}
echo '<p><a href="' . h(ME) . 'create=">' . bold(lang('Create new table'), $_GET["create"] === "") . "</a>\n";
}
jush.urls.sqlset[0] = jush.urls.sql[0];
jush.urls.sqlstatus[0] = jush.urls.sql[0];
jush.style(jushRoot + 'jush.css');
+ if (window.jushLinks) {
+ jush.custom_links = jushLinks;
+ }
jush.highlight_tag('pre', 0);
jush.highlight_tag('code');
}
Autofocus username in login form
Disable spellchecking in SQL textareas
Japanese translation
+Link table names in SQL queries
Defer table information in database overview to JavaScript (performance)
Big tables optimizations (performance)