Upgraded phpmyadmin to 4.0.4 (All Languages) - No modifications yet
[openemr.git] / phpmyadmin / libraries / engines / bdb.lib.php
blob91a56bb57f8aad1225aae77a814b3f2ec05b1a88
1 <?php
2 /* vim: set expandtab sw=4 ts=4 sts=4: */
3 /**
4 * @package PhpMyAdmin-Engines
5 */
6 if (! defined('PHPMYADMIN')) {
7 exit;
10 /**
12 * @package PhpMyAdmin-Engines
14 class PMA_StorageEngine_bdb extends PMA_StorageEngine
16 /**
17 * Returns array with variable names related to this storage engine
19 * @return array variable names
21 function getVariables()
23 return array(
24 'version_bdb' => array(
25 'title' => __('Version information'),
27 'bdb_cache_size' => array(
28 'type' => PMA_ENGINE_DETAILS_TYPE_SIZE,
30 'bdb_home' => array(
32 'bdb_log_buffer_size' => array(
33 'type' => PMA_ENGINE_DETAILS_TYPE_SIZE,
35 'bdb_logdir' => array(
37 'bdb_max_lock' => array(
38 'type' => PMA_ENGINE_DETAILS_TYPE_NUMERIC,
40 'bdb_shared_data' => array(
42 'bdb_tmpdir' => array(
44 'bdb_data_direct' => array(
46 'bdb_lock_detect' => array(
48 'bdb_log_direct' => array(
50 'bdb_no_recover' => array(
52 'bdb_no_sync' => array(
54 'skip_sync_bdb_logs' => array(
56 'sync_bdb_logs' => array(
61 /**
62 * Returns the pattern to be used in the query for SQL variables
63 * related to this storage engine
65 * @return string LIKE pattern
67 function getVariablesLikePattern()
69 return '%bdb%';
72 /**
73 * returns string with filename for the MySQL helppage
74 * about this storage engine
76 * @return string mysql helppage filename
78 function getMysqlHelpPage()
80 return 'bdb';