%s table not found or not set in %s'), 'relation', 'config.inc.php') . '
' . "\n" . PMA_showDocu('relation') . "\n"; require_once './libraries/footer.inc.php'; } if (!$cfgRelation['displaywork']) { echo sprintf(__('%s table not found or not set in %s'), 'table_info', 'config.inc.php') . '
' . "\n" . PMA_showDocu('table_info') . "\n"; require_once './libraries/footer.inc.php'; } if (!isset($cfgRelation['table_coords'])){ echo sprintf(__('%s table not found or not set in %s'), 'table_coords', 'config.inc.php') . '
' . "\n" . PMA_showDocu('table_coords') . "\n"; require_once './libraries/footer.inc.php'; } if (!isset($cfgRelation['pdf_pages'])) { echo sprintf(__('%s table not found or not set in %s'), 'pdf_page', 'config.inc.php') . '
' . "\n" . PMA_showDocu('pdf_pages') . "\n"; require_once './libraries/footer.inc.php'; } if ($cfgRelation['pdfwork']) { /** * User object created for presenting the HTML options * so, user can interact with it and perform export of relations schema */ require_once './libraries/schema/User_Schema.class.php'; $user_schema = new PMA_User_Schema(); /** * This function will process the user input */ $user_schema->processUserPreferences($do); /** * Now first show some possibility to select a page for the export of relation schema */ $user_schema->selectPage(); /** * Possibility to create a new page: */ $user_schema->createPage(); /** * After selection of page or creating a page * It will show you the list of tables * A dashboard will also be shown where you can position the tables */ $user_schema->showTableDashBoard(); if (isset($do) && ($do == 'edcoord' || ($do == 'selectpage' && isset($chpage) && $chpage != 0) || ($do == 'createpage' && isset($chpage) && $chpage != 0))) { /** * show Export schema generation options */ $user_schema->displaySchemaGenerationOptions(); if ((isset($showwysiwyg) && $showwysiwyg == '1')) { ?>