home *** CD-ROM | disk | FTP | other *** search
/ Cricao de Sites - 650 Layouts Prontos / WebMasters.iso / Servidores / xampp-win32-1.6.7-installer.exe / phpMyAdmin / libraries / engines / myisam.lib.php < prev    next >
Encoding:
PHP Script  |  2008-06-23  |  2.2 KB  |  63 lines

  1. <?php
  2. /* vim: set expandtab sw=4 ts=4 sts=4: */
  3. /**
  4.  * @version $Id: myisam.lib.php 10137 2007-03-19 17:55:39Z cybot_tm $
  5.  */
  6.  
  7. /**
  8.  * the MyISAM storage engine
  9.  */
  10. class PMA_StorageEngine_myisam extends PMA_StorageEngine
  11. {
  12.     /**
  13.      * returns array with variable names dedicated to MyISAM storage engine
  14.      *
  15.      * @return  array   variable names
  16.      */
  17.     function getVariables()
  18.     {
  19.         return array(
  20.             'myisam_data_pointer_size' => array(
  21.                 'title' => $GLOBALS['strMyISAMDataPointerSize'],
  22.                 'desc'  => $GLOBALS['strMyISAMDataPointerSizeDesc'],
  23.                 'type'  => PMA_ENGINE_DETAILS_TYPE_SIZE,
  24.             ),
  25.             'myisam_recover_options' => array(
  26.                 'title' => $GLOBALS['strMyISAMRecoverOptions'],
  27.                 'desc'  => $GLOBALS['strMyISAMRecoverOptionsDesc'],
  28.             ),
  29.             'myisam_max_sort_file_size' => array(
  30.                 'title' => $GLOBALS['strMyISAMMaxSortFileSize'],
  31.                 'desc'  => $GLOBALS['strMyISAMMaxSortFileSizeDesc'],
  32.                 'type'  => PMA_ENGINE_DETAILS_TYPE_SIZE,
  33.             ),
  34.             'myisam_max_extra_sort_file_size' => array(
  35.                 'title' => $GLOBALS['strMyISAMMaxExtraSortFileSize'],
  36.                 'desc'  => $GLOBALS['strMyISAMMaxExtraSortFileSizeDesc'],
  37.                 'type'  => PMA_ENGINE_DETAILS_TYPE_SIZE,
  38.             ),
  39.             'myisam_repair_threads' => array(
  40.                 'title' => $GLOBALS['strMyISAMRepairThreads'],
  41.                 'desc'  => $GLOBALS['strMyISAMRepairThreadsDesc'],
  42.                 'type'  => PMA_ENGINE_DETAILS_TYPE_NUMERIC,
  43.             ),
  44.             'myisam_sort_buffer_size' => array(
  45.                 'title' => $GLOBALS['strMyISAMSortBufferSize'],
  46.                 'desc'  => $GLOBALS['strMyISAMSortBufferSizeDesc'],
  47.                 'type'  => PMA_ENGINE_DETAILS_TYPE_SIZE,
  48.             ),
  49.             'myisam_stats_method' => array(
  50.             ),
  51.             'delay_key_write' => array(
  52.             ),
  53.             'bulk_insert_buffer_size' => array(
  54.                 'type'  => PMA_ENGINE_DETAILS_TYPE_SIZE,
  55.             ),
  56.             'skip_external_locking' => array(
  57.             ),
  58.         );
  59.     }
  60. }
  61.  
  62. ?>
  63.