Make sql_metadata configurable
Signed-off-by: Madhura Jayaratne <madhura.cj@gmail.com>
This commit is contained in:
parent
2b1b872f63
commit
84c7c61cd2
@ -1843,6 +1843,13 @@ $cfg['Export']['sql_disable_fk'] = false;
|
||||
*/
|
||||
$cfg['Export']['sql_views_as_tables'] = false;
|
||||
|
||||
/**
|
||||
*
|
||||
*
|
||||
* @global boolean $cfg['Export']['sql_metadata']
|
||||
*/
|
||||
$cfg['Export']['sql_metadata'] = false;
|
||||
|
||||
/**
|
||||
*
|
||||
*
|
||||
|
||||
@ -173,6 +173,7 @@ $strConfigExport_sql_dates_name = __('Creation/Update/Check dates');
|
||||
$strConfigExport_sql_delayed_name = __('Use delayed inserts');
|
||||
$strConfigExport_sql_disable_fk_name = __('Disable foreign key checks');
|
||||
$strConfigExport_sql_views_as_tables_name = __('Export views as tables');
|
||||
$strConfigExport_sql_metadata_name = __('Export related metadata from phpMyAdmin configuration storage');
|
||||
$strConfigExport_sql_drop_database_name = sprintf(__('Add %s'), 'DROP DATABASE');
|
||||
$strConfigExport_sql_drop_table_name
|
||||
= sprintf(__('Add %s'), 'DROP TABLE / VIEW / PROCEDURE / FUNCTION / EVENT / TRIGGER');
|
||||
|
||||
@ -301,6 +301,7 @@ $forms['Export']['Sql'] = array('Export' => array(
|
||||
'sql_use_transaction',
|
||||
'sql_disable_fk',
|
||||
'sql_views_as_tables',
|
||||
'sql_metadata',
|
||||
'sql_compatibility',
|
||||
':group:' . __('Database export options'),
|
||||
'sql_drop_database',
|
||||
|
||||
@ -200,6 +200,7 @@ $forms['Export']['Sql'] = array(
|
||||
'Export/sql_use_transaction',
|
||||
'Export/sql_disable_fk',
|
||||
'Export/sql_views_as_tables',
|
||||
'Export/sql_metadata',
|
||||
'Export/sql_compatibility',
|
||||
':group:' . __('Database export options'),
|
||||
'Export/sql_drop_database',
|
||||
|
||||
Loading…
Reference in New Issue
Block a user