%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 displaying the HTML options
* so, user can play with it and perform export of relations schema
*/
require_once './libraries/schema/user_schema.php';
$user_schema = new PMA_USER_SCHEMA();
/**
* This function will process the user input
*
*/
$user_schema->userInputProcess($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))
|| ($do == 'createpage' && isset($chpage)))) {
/**
* show Export schema generation options
*/
$user_schema->displaySchemaGenerationOptions();
if ((isset($showwysiwyg) && $showwysiwyg == '1')) {
?>