diff --git a/libraries/operations.lib.php b/libraries/operations.lib.php index f7c325d338..9eaf38ea41 100644 --- a/libraries/operations.lib.php +++ b/libraries/operations.lib.php @@ -1018,4 +1018,158 @@ function PMA_getHtmlForCopytable() return $html_output; } +function PMA_getHtmlForTableMaintenance( + $is_myisam_or_aria, $is_innodb, $is_berkeleydb, $url_params +) { + $common_functions = PMA_CommonFunctions::getInstance(); + + $html_output = '
'; + $html_output .= '
' + . '' . __('Table maintenance') . ''; + $html_output .= '' + . '
' + . '
'; + + return $html_output; +} + ?> diff --git a/tbl_operations.php b/tbl_operations.php index ee1090bc93..f0555533f8 100644 --- a/tbl_operations.php +++ b/tbl_operations.php @@ -317,109 +317,16 @@ echo PMA_getTableOptionDiv($comment, $tbl_collation, $tbl_storage_engine, */ echo PMA_getHtmlForCopytable(); -?> -
+echo '
'; -
-
- +/** + * Table mainatenance + */ +echo PMA_getHtmlForTableMaintenance($is_myisam_or_aria, $is_innodb, + $is_berkeleydb, $url_params + ); - -
-