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:
authorMaurício Meneghini Fauth <mauricio@fauth.dev>2019-08-20 06:26:34 +0300
committerMaurício Meneghini Fauth <mauricio@fauth.dev>2019-08-20 06:26:34 +0300
commitce5cc3c65866ab568db08eb4de484d8f6c834998 (patch)
treef7b7de5918549ed683c805f4c389659e73a63b39 /libraries
parent1de76c66ddf4ba9d9f45c614618128d7b0c1d7ce (diff)
Use the router for schema_export.php
Signed-off-by: Maurício Meneghini Fauth <mauricio@fauth.dev>
Diffstat (limited to 'libraries')
-rw-r--r--libraries/entry_points/schema_export.php38
1 files changed, 38 insertions, 0 deletions
diff --git a/libraries/entry_points/schema_export.php b/libraries/entry_points/schema_export.php
new file mode 100644
index 0000000000..2461d3ef83
--- /dev/null
+++ b/libraries/entry_points/schema_export.php
@@ -0,0 +1,38 @@
+<?php
+/* vim: set expandtab sw=4 ts=4 sts=4: */
+/**
+ * Schema export handler
+ *
+ * @package PhpMyAdmin
+ */
+declare(strict_types=1);
+
+use PhpMyAdmin\Export;
+use PhpMyAdmin\Relation;
+use PhpMyAdmin\Util;
+
+if (! defined('PHPMYADMIN')) {
+ exit;
+}
+
+global $containerBuilder;
+
+/**
+ * get all variables needed for exporting relational schema
+ * in $cfgRelation
+ */
+/** @var Relation $relation */
+$relation = $containerBuilder->get('relation');
+$cfgRelation = $relation->getRelationsParam();
+
+if (! isset($_REQUEST['export_type'])) {
+ Util::checkParameters(['export_type']);
+}
+
+/**
+ * Include the appropriate Schema Class depending on $export_type
+ * default is PDF
+ */
+/** @var Export $export */
+$export = $containerBuilder->get('export');
+$export->processExportSchema($_REQUEST['export_type']);