Browse mode ¶
-
Type: string Default value: 'icons'
Defines whether the table navigation links contain
'icons'
,'text'
or'both'
.
$cfg['ActionLinksMode']
¶-
Type: string Default value: 'both'
If set to
icons
, will display icons instead of text for db and table properties links (like Browse, Select, Insert, …). Can be set to'both'
if you want icons AND text. When set totext
, will only show text.
$cfg['RowActionType']
¶-
Type: string Default value: 'both'
Whether to display icons or text or both icons and text in table row action segment. Value can be either of
'icons'
,'text'
or'both'
.
$cfg['ShowAll']
¶-
Type: boolean Default value: false Defines whether a user should be displayed a "Show all" button in browse mode or not in all cases. By default it is shown only on small tables (less than 500 rows) to avoid performance issues while getting too many rows.
$cfg['MaxRows']
¶-
Type: integer Default value: 25 Number of rows displayed when browsing a result set and no LIMIT clause is used. If the result set contains more rows, "Previous" and "Next" links will be shown. Possible values: 25,50,100,250,500.
$cfg['Order']
¶-
Type: string Default value: 'SMART'
Defines whether columns are displayed in ascending (
ASC
) order, in descending (DESC
) order or in a "smart" (SMART
) order - I.E. descending order for columns of type TIME, DATE, DATETIME and TIMESTAMP, ascending order else- by default.Changed in version 3.4.0: Since phpMyAdmin 3.4.0 the default value is
'SMART'
.
$cfg['GridEditing']
¶-
Type: string Default value: 'double-click'
Defines which action (
double-click
orclick
) triggers grid editing. Can be deactivated with thedisabled
value.
$cfg['RelationalDisplay']
¶-
Type: string Default value: 'K'
Defines the initial behavior for Options > Relational.
K
, which is the default, displays the key whileD
shows the display column.
$cfg['SaveCellsAtOnce']
¶-
Type: boolean Default value: false Defines whether or not to save all edited cells at once for grid editing.