00001 <?php
00002
00003
00004
00005 class PMA_StorageEngine_myisam extends PMA_StorageEngine {
00006 function getVariables () {
00007 return array(
00008 'myisam_data_pointer_size' => array(
00009 'title' => $GLOBALS['strMyISAMDataPointerSize'],
00010 'desc' => $GLOBALS['strMyISAMDataPointerSizeDesc'],
00011 'type' => PMA_ENGINE_DETAILS_TYPE_SIZE
00012 ),
00013 'myisam_recover_options' => array(
00014 'title' => $GLOBALS['strMyISAMRecoverOptions'],
00015 'desc' => $GLOBALS['strMyISAMRecoverOptionsDesc']
00016 ),
00017 'myisam_max_sort_file_size' => array(
00018 'title' => $GLOBALS['strMyISAMMaxSortFileSize'],
00019 'desc' => $GLOBALS['strMyISAMMaxSortFileSizeDesc'],
00020 'type' => PMA_ENGINE_DETAILS_TYPE_SIZE
00021 ),
00022 'myisam_max_extra_sort_file_size' => array(
00023 'title' => $GLOBALS['strMyISAMMaxExtraSortFileSize'],
00024 'desc' => $GLOBALS['strMyISAMMaxExtraSortFileSizeDesc'],
00025 'type' => PMA_ENGINE_DETAILS_TYPE_SIZE
00026 ),
00027 'myisam_repair_threads' => array(
00028 'title' => $GLOBALS['strMyISAMRepairThreads'],
00029 'desc' => $GLOBALS['strMyISAMRepairThreadsDesc'],
00030 'type' => PMA_ENGINE_DETAILS_TYPE_NUMERIC
00031 ),
00032 'myisam_sort_buffer_size' => array(
00033 'title' => $GLOBALS['strMyISAMSortBufferSize'],
00034 'desc' => $GLOBALS['strMyISAMSortBufferSizeDesc'],
00035 'type' => PMA_ENGINE_DETAILS_TYPE_SIZE
00036 )
00037 );
00038 }
00039 function getVariablesLikePattern () {
00040 return 'myisam\\_%';
00041 }
00042 }
00043
00044 ?>