$response->addHTML($html_form); $response->addHTML(PMA_URL_getHiddenInputs($db, $table)); $tabletype = '<input type="hidden" name="table_type" value='; if ($db_is_information_schema) { $tabletype .= '"information_schema" />'; } else { if ($tbl_is_view) { $tabletype .= '"view" />'; } else { $tabletype .= '"table" />'; } } $response->addHTML($tabletype); $tablestructure = '<table id="tablestructure" class="data">'; $response->addHTML($tablestructure); $response->addHTML(PMA_getHtmlForTableStructureHeader($db_is_information_schema, $tbl_is_view)); $response->addHTML('<tbody>'); // table body // prepare comments $comments_map = array(); $mime_map = array(); if ($GLOBALS['cfg']['ShowPropertyComments']) { include_once 'libraries/transformations.lib.php'; $comments_map = PMA_getComments($db, $table); if ($cfgRelation['mimework'] && $cfg['BrowseMIME']) { $mime_map = PMA_getMIME($db, $table, true); } } $rownum = 0; $columns_list = array(); $save_row = array();
$response->addHTML($html_form); $response->addHTML(PMA_URL_getHiddenInputs($db, $table)); $tabletype = '<input type="hidden" name="table_type" value='; if ($db_is_system_schema) { $tabletype .= '"information_schema" />'; } else { if ($tbl_is_view) { $tabletype .= '"view" />'; } else { $tabletype .= '"table" />'; } } $response->addHTML($tabletype); $tablestructure = '<table id="tablestructure" class="data topmargin">'; $response->addHTML($tablestructure); $response->addHTML(PMA_getHtmlForTableStructureHeader($db_is_system_schema, $tbl_is_view)); $response->addHTML('<tbody>'); // table body // prepare comments $comments_map = array(); $mime_map = array(); if ($GLOBALS['cfg']['ShowPropertyComments']) { include_once 'libraries/transformations.lib.php'; $comments_map = PMA_getComments($db, $table); if ($cfgRelation['mimework'] && $cfg['BrowseMIME']) { $mime_map = PMA_getMIME($db, $table, true); } } require_once 'libraries/central_columns.lib.php'; $central_list = PMA_getCentralColumnsFromTable($db, $table); $rownum = 0;
} else { $tabletype .= '"table" />'; } $response->addHTML($tabletype); $tablestructure = '<table id="tablestructure" class="data'; if ($GLOBALS['cfg']['PropertiesIconic'] === true) { $tablestructure .= ' PropertiesIconic'; } $tablestructure .= '">'; $response->addHTML($tablestructure); $response->addHTML( PMA_getHtmlForTableStructureHeader( $db_is_information_schema, $tbl_is_view ) ); $response->addHTML('<tbody>'); unset($i); // table body // prepare comments $comments_map = array(); $mime_map = array(); if ($GLOBALS['cfg']['ShowPropertyComments']) { include_once 'libraries/transformations.lib.php';