Dropped references to "left frame" from Documentation.html
This commit is contained in:
parent
10ffbc918a
commit
b5a42b8a9a
@ -843,12 +843,13 @@ since this link provides funding for phpMyAdmin.
|
||||
<br /><br />
|
||||
|
||||
As of phpMyAdmin 2.5.5 the order inside the array is used for sorting the
|
||||
databases in the left frame, so that you can individually arrange your databases.<br />
|
||||
If you want to have certain databases at the top, but don't care about the others, you do not
|
||||
need to specify all other databases. Use:
|
||||
databases in the navigation panel, so that you can individually arrange
|
||||
your databases.<br />
|
||||
If you want to have certain databases at the top, but don't care about the
|
||||
others, you do not need to specify all other databases. Use:
|
||||
<code>$cfg['Servers'][$i]['only_db'] = array('db3', 'db4', '*');</code>
|
||||
instead to tell phpMyAdmin that it should display db3 and db4 on top, and the rest in alphabetic
|
||||
order.</dd>
|
||||
instead to tell phpMyAdmin that it should display db3 and db4 on top,
|
||||
and the rest in alphabetic order.</dd>
|
||||
|
||||
<dt><span id="cfg_Servers_hide_db">$cfg['Servers'][$i]['hide_db']</span> string
|
||||
</dt>
|
||||
@ -857,7 +858,8 @@ since this link provides funding for phpMyAdmin.
|
||||
from listing, but a user is still able to access them (using, for example,
|
||||
the SQL query area). To limit access, use the MySQL privilege system.
|
||||
<br /><br />
|
||||
For example, to hide all databases starting with the letter "a", use<br />
|
||||
For example, to hide all databases starting with the letter "a",
|
||||
use<br />
|
||||
<pre>$cfg['Servers'][$i]['hide_db'] = '^a';</pre>
|
||||
and to hide both "db1" and "db2" use <br />
|
||||
<pre>$cfg['Servers'][$i]['hide_db'] = '^(db1|db2)$';</pre>
|
||||
@ -1068,7 +1070,7 @@ ALTER TABLE `pma_column_comments`
|
||||
<span id="cfg_Servers_recent">$cfg['Servers'][$i]['recent']</span> string
|
||||
</dt>
|
||||
<dd>
|
||||
Since release 3.5.0 you can show recently used tables in the left navigation panel.
|
||||
Since release 3.5.0 you can show recently used tables in the navigation panel.
|
||||
It helps you to jump across table directly, without the need to select the database,
|
||||
and then select the table. Using
|
||||
<a href="#cfg_NumRecentTables" class="configrule">$cfg['NumRecentTables']</a>
|
||||
@ -1324,7 +1326,8 @@ CREATE DATABASE,ALTER DATABASE,DROP DATABASE</pre>
|
||||
<code>libraries/config.default.php</code> for examples).
|
||||
</dd>
|
||||
<dt><span id="cfg_Servers_CountTables">$cfg['Servers'][$i]['CountTables']</span> boolean</dt>
|
||||
<dd>Whether to count the number of tables for each database when preparing the list of databases for the navigation frame.
|
||||
<dd>Whether to count the number of tables for each database when preparing the
|
||||
list of databases for the navigation panel.
|
||||
</dd>
|
||||
<dt><span id="cfg_Servers_SignonScript">$cfg['Servers'][$i]['SignonScript']</span> string</dt>
|
||||
<dd>Name of PHP script to be sourced and executed to obtain
|
||||
@ -1550,18 +1553,19 @@ CREATE DATABASE,ALTER DATABASE,DROP DATABASE</pre>
|
||||
up tables by the above separator.</dd>
|
||||
|
||||
<dt id="cfg_NumRecentTables">$cfg['NumRecentTables'] integer</dt>
|
||||
<dd>The maximum number of recently used tables shown in the left navigation
|
||||
frame. Set this to 0 (zero) to disable the listing of recent tables.</dd>
|
||||
<dd>The maximum number of recently used tables shown in the navigation
|
||||
panel. Set this to 0 (zero) to disable the listing of recent tables.</dd>
|
||||
|
||||
<dt id="cfg_ShowTooltip">$cfg['ShowTooltip'] boolean</dt>
|
||||
<dd>Defines whether to display table comment as tool-tip in left frame or
|
||||
<dd>Defines whether to display item comments as tooltips in navigation panel or
|
||||
not.</dd>
|
||||
|
||||
<dt id="cfg_NavigationDisplayLogo">$cfg['NavigationDisplayLogo'] boolean</dt>
|
||||
<dd>Defines whether or not to display the phpMyAdmin logo at the top of the left frame.
|
||||
Defaults to <code>TRUE</code>.</dd>
|
||||
<dd>Defines whether or not to display the phpMyAdmin logo at the top of the
|
||||
navigation panel. Defaults to <code>TRUE</code>.</dd>
|
||||
<dt id="cfg_NavigationLogoLink">$cfg['NavigationLogoLink'] string</dt>
|
||||
<dd>Enter <abbr title="Uniform Resource Locator">URL</abbr> where logo in the navigation frame will point to.
|
||||
<dd>Enter <abbr title="Uniform Resource Locator">URL</abbr> where logo in
|
||||
the navigation panel will point to.
|
||||
For use especially with self made theme which changes this.
|
||||
The default value for this is <code>main.php</code>.</dd>
|
||||
|
||||
@ -1573,7 +1577,7 @@ CREATE DATABASE,ALTER DATABASE,DROP DATABASE</pre>
|
||||
<dt id="cfg_NavigationTreeDisplayItemFilterMinimum">$cfg['NavigationTreeDisplayItemFilterMinimum']
|
||||
integer</dt>
|
||||
<dd>Defines the minimum number of items (tables, views, routines and events)
|
||||
to display a JavaScript filter box above the list of items in the left frame.
|
||||
to display a JavaScript filter box above the list of items in the navigation tree.
|
||||
Defaults to <code>30</code>. To disable the filter completely some high number
|
||||
can be used (e.g. 9999)</dd>
|
||||
|
||||
@ -1907,7 +1911,7 @@ $cfg['TrustedProxies'] =
|
||||
</dd>
|
||||
|
||||
<dt id="cfg_NaviWidth">$cfg['NaviWidth'] integer</dt>
|
||||
<dd>Navi frame width in pixels. See <code>themes/themename/layout.inc.php</code>.
|
||||
<dd>Navigation panel width in pixels. See <code>themes/themename/layout.inc.php</code>.
|
||||
</dd>
|
||||
|
||||
<dt><span id="cfg_NaviBackground">$cfg['NaviBackground']</span> string [CSS color for background]<br />
|
||||
@ -2184,11 +2188,13 @@ setfacl -d -m "g:www-data:rwx" tmp
|
||||
<span id="cfg_QueryHistoryMax">$cfg['QueryHistoryMax'] </span>integer
|
||||
</dt>
|
||||
<dd>
|
||||
All those variables affect the query window feature. A <code><abbr title="structured query language">SQL</abbr></code> link
|
||||
or icon is always displayed on the left panel. If JavaScript is enabled in
|
||||
your browser, a click on this opens a distinct query window, which is
|
||||
a direct interface to enter <abbr title="structured query language">SQL</abbr> queries. Otherwise, the right panel
|
||||
changes to display a query box.<br /><br />
|
||||
All those variables affect the query window feature. A <code>
|
||||
<abbr title="structured query language">SQL</abbr></code> link
|
||||
or icon is always displayed in the navigation panel. If JavaScript is
|
||||
enabled in your browser, a click on this opens a distinct query window,
|
||||
which is a direct interface to enter
|
||||
<abbr title="structured query language">SQL</abbr> queries.
|
||||
Otherwise, the right panel changes to display a query box.<br /><br />
|
||||
|
||||
The size of this query window can be customized with
|
||||
<code>$cfg['QueryWindowWidth']</code> and <code>$cfg['QueryWindowHeight']</code>
|
||||
@ -2254,7 +2260,7 @@ setfacl -d -m "g:www-data:rwx" tmp
|
||||
|
||||
<dt id="cfg_NaturalOrder">$cfg['NaturalOrder'] boolean</dt>
|
||||
<dd>Sorts database and table names according to natural order (for example,
|
||||
t1, t2, t10). Currently implemented in the left panel (Light mode)
|
||||
t1, t2, t10). Currently implemented in the navigation panel
|
||||
and in Database view, for the table list.</dd>
|
||||
|
||||
<dt id="cfg_InitialSlidersState">$cfg['InitialSlidersState'] string</dt>
|
||||
@ -3817,9 +3823,10 @@ to see if the problem goes away.</p>
|
||||
<h4 id="faq6_4">
|
||||
<a href="#faq6_4">6.4 How can I backup my database or table?</a></h4>
|
||||
|
||||
<p> Click on a database or table name in the left frame, the properties will be
|
||||
<p> Click on a database or table name in the navigation panel, the properties will be
|
||||
displayed. Then on the menu, click "Export", you can dump
|
||||
the structure, the data, or both. This will generate standard <abbr title="structured query language">SQL</abbr>
|
||||
the structure, the data, or both. This will generate standard
|
||||
<abbr title="structured query language">SQL</abbr>
|
||||
statements that can be used to recreate your database/table.
|
||||
<br /><br />
|
||||
You will need to choose "Save as file", so that phpMyAdmin can
|
||||
@ -3836,7 +3843,7 @@ to see if the problem goes away.</p>
|
||||
How can I run a ".sql" file?
|
||||
</a></h4>
|
||||
|
||||
<p> Click on a database name in the left frame, the properties will be
|
||||
<p> Click on a database name in the navigation panel, the properties will be
|
||||
displayed. Select "Import" from the list
|
||||
of tabs in the right–hand frame (or "<abbr title="structured query language">SQL</abbr>" if your phpMyAdmin
|
||||
version is previous to 2.7.0). In the "Location of the text file" section, type in
|
||||
@ -3899,7 +3906,7 @@ INSERT INTO REL_towns VALUES ('M', 'Montréal');
|
||||
|
||||
<p> Then test like this:</p>
|
||||
|
||||
<ul><li>Click on your db name in the left frame</li>
|
||||
<ul><li>Click on your db name in the navigation panel</li>
|
||||
<li>Choose "Query"</li>
|
||||
<li>Use tables: persons, towns, countries</li>
|
||||
<li>Click "Update query"</li>
|
||||
@ -3933,7 +3940,7 @@ INSERT INTO REL_towns VALUES ('M', 'Montréal');
|
||||
which pages?
|
||||
</p>
|
||||
<ul>
|
||||
<li>Select your database in the left frame.</li>
|
||||
<li>Select your database in the navigation panel.</li>
|
||||
<li>Choose "Operations" in the navigation bar at the top.</li>
|
||||
<li>Choose "Edit <abbr title="Portable Document Format">PDF</abbr>
|
||||
Pages" near the bottom of the page.</li>
|
||||
|
||||
Loading…
Reference in New Issue
Block a user