Documentation TYPO3 par Ameos

myisam.lib.php

00001 <?php
00002 /* $Id: myisam.lib.php,v 2.0 2005/03/05 13:24:28 rabus Exp $ */
00003 // vim: expandtab sw=4 ts=4 sts=4:
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 ?>


Généré par TYPO3 Ameos avec  doxygen 1.4.6