2 /* vim: set expandtab sw=4 ts=4 sts=4: */
4 * Schema export handler
10 use PhpMyAdmin\Relation
;
14 * Gets some core libraries
16 require_once 'libraries/common.inc.php';
19 * get all variables needed for exporting relational schema
22 $relation = new Relation();
23 $cfgRelation = $relation->getRelationsParam();
25 if (! isset($_POST['export_type'])) {
26 Util
::checkParameters(array('export_type'));
30 * Include the appropriate Schema Class depending on $export_type
33 Export
::processExportSchema($_POST['export_type']);