Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlex Marin <alex.ukf@gmail.com>2012-05-02 00:34:07 +0400
committerAlex Marin <alex.ukf@gmail.com>2012-05-02 00:49:11 +0400
commit4806c07aa031dd0268e9d251d103ff197cc64a79 (patch)
tree16dd1579b63b3167c547ac228e25728534702b5e /export.php
parent851f881cc635df27aa903aef315c228f8468e078 (diff)
Export plugins coding style: move arguments with default values at the end
Diffstat (limited to 'export.php')
-rw-r--r--export.php48
1 files changed, 40 insertions, 8 deletions
diff --git a/export.php b/export.php
index 3c54a82672..f69402d305 100644
--- a/export.php
+++ b/export.php
@@ -478,7 +478,11 @@ do {
if ($GLOBALS[$what . '_structure_or_data'] == 'structure' || $GLOBALS[$what . '_structure_or_data'] == 'structure_and_data') {
// for a view, export a stand-in definition of the table
// to resolve view dependencies
- if (!PMA_exportStructure($current_db, $table, $crlf, $err_url, $do_relation, $do_comments, $do_mime, $do_dates, $is_view ? 'stand_in' : 'create_table', $export_type)) {
+ if (! PMA_exportStructure(
+ $current_db, $table, $crlf, $err_url,
+ $is_view ? 'stand_in' : 'create_table', $export_type,
+ $do_relation, $do_comments, $do_mime, $do_dates
+ )) {
break 3;
}
}
@@ -492,7 +496,11 @@ do {
// now export the triggers (needs to be done after the data because
// triggers can modify already imported tables)
if ($GLOBALS[$what . '_structure_or_data'] == 'structure' || $GLOBALS[$what . '_structure_or_data'] == 'structure_and_data') {
- if (!PMA_exportStructure($current_db, $table, $crlf, $err_url, $do_relation, $do_comments, $do_mime, $do_dates, 'triggers', $export_type)) {
+ if (! PMA_exportStructure(
+ $current_db, $table, $crlf, $err_url,
+ 'triggers', $export_type,
+ $do_relation, $do_comments, $do_mime, $do_dates
+ )) {
break 2;
}
}
@@ -500,7 +508,11 @@ do {
foreach ($views as $view) {
// no data export for a view
if ($GLOBALS[$what . '_structure_or_data'] == 'structure' || $GLOBALS[$what . '_structure_or_data'] == 'structure_and_data') {
- if (!PMA_exportStructure($current_db, $view, $crlf, $err_url, $do_relation, $do_comments, $do_mime, $do_dates, 'create_view', $export_type)) {
+ if (! PMA_exportStructure(
+ $current_db, $view, $crlf, $err_url,
+ 'create_view', $export_type,
+ $do_relation, $do_comments, $do_mime, $do_dates
+ )) {
break 3;
}
}
@@ -532,7 +544,11 @@ do {
if ($GLOBALS[$what . '_structure_or_data'] == 'structure' || $GLOBALS[$what . '_structure_or_data'] == 'structure_and_data') {
// for a view, export a stand-in definition of the table
// to resolve view dependencies
- if (!PMA_exportStructure($db, $table, $crlf, $err_url, $do_relation, $do_comments, $do_mime, $do_dates, $is_view ? 'stand_in' : 'create_table', $export_type)) {
+ if (! PMA_exportStructure(
+ $db, $table, $crlf, $err_url,
+ $is_view ? 'stand_in' : 'create_table', $export_type,
+ $do_relation, $do_comments, $do_mime, $do_dates
+ )) {
break 2;
}
}
@@ -546,7 +562,11 @@ do {
// now export the triggers (needs to be done after the data because
// triggers can modify already imported tables)
if ($GLOBALS[$what . '_structure_or_data'] == 'structure' || $GLOBALS[$what . '_structure_or_data'] == 'structure_and_data') {
- if (!PMA_exportStructure($db, $table, $crlf, $err_url, $do_relation, $do_comments, $do_mime, $do_dates, 'triggers', $export_type)) {
+ if (! PMA_exportStructure(
+ $db, $table, $crlf, $err_url,
+ 'triggers', $export_type,
+ $do_relation, $do_comments, $do_mime, $do_dates
+ )) {
break 2;
}
}
@@ -554,7 +574,11 @@ do {
foreach ($views as $view) {
// no data export for a view
if ($GLOBALS[$what . '_structure_or_data'] == 'structure' || $GLOBALS[$what . '_structure_or_data'] == 'structure_and_data') {
- if (!PMA_exportStructure($db, $view, $crlf, $err_url, $do_relation, $do_comments, $do_mime, $do_dates, 'create_view', $export_type)) {
+ if (! PMA_exportStructure(
+ $db, $view, $crlf, $err_url,
+ 'create_view', $export_type,
+ $do_relation, $do_comments, $do_mime, $do_dates
+ )) {
break 2;
}
}
@@ -579,7 +603,11 @@ do {
$is_view = PMA_Table::isView($db, $table);
if ($GLOBALS[$what . '_structure_or_data'] == 'structure' || $GLOBALS[$what . '_structure_or_data'] == 'structure_and_data') {
- if (!PMA_exportStructure($db, $table, $crlf, $err_url, $do_relation, $do_comments, $do_mime, $do_dates, $is_view ? 'create_view' : 'create_table', $export_type)) {
+ if (! PMA_exportStructure(
+ $db, $table, $crlf, $err_url,
+ $is_view ? 'create_view' : 'create_table', $export_type,
+ $do_relation, $do_comments, $do_mime, $do_dates
+ )) {
break;
}
}
@@ -605,7 +633,11 @@ do {
// now export the triggers (needs to be done after the data because
// triggers can modify already imported tables)
if ($GLOBALS[$what . '_structure_or_data'] == 'structure' || $GLOBALS[$what . '_structure_or_data'] == 'structure_and_data') {
- if (!PMA_exportStructure($db, $table, $crlf, $err_url, $do_relation, $do_comments, $do_mime, $do_dates, 'triggers', $export_type)) {
+ if (! PMA_exportStructure(
+ $db, $table, $crlf, $err_url,
+ 'triggers', $export_type,
+ $do_relation, $do_comments, $do_mime, $do_dates
+ )) {
break 2;
}
}