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:
Diffstat (limited to 'libraries/classes/Tracking.php')
-rw-r--r--libraries/classes/Tracking.php25
1 files changed, 7 insertions, 18 deletions
diff --git a/libraries/classes/Tracking.php b/libraries/classes/Tracking.php
index 3507cefa9f..1ffc76e6b6 100644
--- a/libraries/classes/Tracking.php
+++ b/libraries/classes/Tracking.php
@@ -27,7 +27,6 @@ use function mb_strstr;
use function preg_replace;
use function rtrim;
use function sprintf;
-use function strlen;
use function strtotime;
use const SORT_ASC;
@@ -847,35 +846,25 @@ class Tracking
}
/**
- * Function to export as entries
+ * @param array<int, array<string, int|string>> $entries
*
- * @param array $entries entries
+ * @return array<string, string>
+ * @psalm-return array{filename: non-empty-string, dump: non-empty-string}
*/
- public function exportAsFileDownload(string $table, array $entries): void
+ public function getDownloadInfoForExport(string $table, array $entries): array
{
ini_set('url_rewriter.tags', '');
// Replace all multiple whitespaces by a single space
- $table = htmlspecialchars(preg_replace('/\s+/', ' ', $table));
- $dump = '# ' . sprintf(
- __('Tracking report for table `%s`'),
- $table
- )
- . "\n" . '# ' . date('Y-m-d H:i:s') . "\n";
+ $table = htmlspecialchars((string) preg_replace('/\s+/', ' ', $table));
+ $dump = '# ' . sprintf(__('Tracking report for table `%s`'), $table) . "\n" . '# ' . date('Y-m-d H:i:s') . "\n";
foreach ($entries as $entry) {
$dump .= $entry['statement'];
}
$filename = 'log_' . $table . '.sql';
- ResponseRenderer::getInstance()->disable();
- Core::downloadHeader(
- $filename,
- 'text/x-sql',
- strlen($dump)
- );
- echo $dump;
- exit;
+ return ['filename' => $filename, 'dump' => $dump];
}
/**