mirror of
https://github.com/vrana/adminer.git
synced 2025-08-05 14:17:26 +02:00
Add section links in database overview
This commit is contained in:
@@ -1,6 +1,7 @@
|
|||||||
## Adminer dev
|
## Adminer dev
|
||||||
- Allow specifying operator in search anywhere
|
- Allow specifying operator in search anywhere
|
||||||
- Do not order descending in GROUP BY select
|
- Do not order descending in GROUP BY select
|
||||||
|
- Add section links in database overview
|
||||||
- Warn about exceeded max_file_uploads in import
|
- Warn about exceeded max_file_uploads in import
|
||||||
- MySQL 5.0-: Do not load partitioning info in alter table (bug #1099)
|
- MySQL 5.0-: Do not load partitioning info in alter table (bug #1099)
|
||||||
- PostgreSQL: Show structure of inherited tables
|
- PostgreSQL: Show structure of inherited tables
|
||||||
|
@@ -962,6 +962,12 @@ class Adminer {
|
|||||||
echo (support("scheme") ? "<a href='" . h(ME) . "scheme='>" . ($_GET["ns"] != "" ? lang('Alter schema') : lang('Create schema')) . "</a>\n" : "");
|
echo (support("scheme") ? "<a href='" . h(ME) . "scheme='>" . ($_GET["ns"] != "" ? lang('Alter schema') : lang('Create schema')) . "</a>\n" : "");
|
||||||
echo ($_GET["ns"] !== "" ? '<a href="' . h(ME) . 'schema=">' . lang('Database schema') . "</a>\n" : "");
|
echo ($_GET["ns"] !== "" ? '<a href="' . h(ME) . 'schema=">' . lang('Database schema') . "</a>\n" : "");
|
||||||
echo (support("privileges") ? "<a href='" . h(ME) . "privileges='>" . lang('Privileges') . "</a>\n" : "");
|
echo (support("privileges") ? "<a href='" . h(ME) . "privileges='>" . lang('Privileges') . "</a>\n" : "");
|
||||||
|
if ($_GET["ns"] !== "") {
|
||||||
|
echo (support("routine") ? "<a href='#routines'>" . lang('Routines') . "</a>\n" : "");
|
||||||
|
echo (support("sequence") ? "<a href='#sequences'>" . lang('Sequences') . "</a>\n" : "");
|
||||||
|
echo (support("type") ? "<a href='#user-types'>" . lang('User types') . "</a>\n" : "");
|
||||||
|
echo (support("event") ? "<a href='#events'>" . lang('Events') . "</a>\n" : "");
|
||||||
|
}
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user