Fix for the Open in New Window in Patient/Client->Patients search gui, take 2.
[openemr.git] / phpmyadmin / libraries / engines / bdb.lib.php
blob2b37e1b228b4a1c57a5c0d64a048a86207d00808
1 <?php
2 /* vim: set expandtab sw=4 ts=4 sts=4: */
3 /**
4 * @version $Id$
5 */
7 /**
9 */
10 class PMA_StorageEngine_bdb extends PMA_StorageEngine
12 /**
13 * @return array variable names
15 function getVariables()
17 return array(
18 'version_bdb' => array(
19 'title' => $GLOBALS['strVersionInformation'],
21 'bdb_cache_size' => array(
22 'type' => PMA_ENGINE_DETAILS_TYPE_SIZE,
24 'bdb_home' => array(
26 'bdb_log_buffer_size' => array(
27 'type' => PMA_ENGINE_DETAILS_TYPE_SIZE,
29 'bdb_logdir' => array(
31 'bdb_max_lock' => array(
32 'type' => PMA_ENGINE_DETAILS_TYPE_NUMERIC,
34 'bdb_shared_data' => array(
36 'bdb_tmpdir' => array(
38 'bdb_data_direct' => array(
40 'bdb_lock_detect' => array(
42 'bdb_log_direct' => array(
44 'bdb_no_recover' => array(
46 'bdb_no_sync' => array(
48 'skip_sync_bdb_logs' => array(
50 'sync_bdb_logs' => array(
55 /**
56 * @return string LIKE pattern
58 function getVariablesLikePattern()
60 return '%bdb%';
63 /**
64 * returns string with filename for the MySQL helppage
65 * about this storage engne
67 * @return string mysql helppage filename
69 function getMysqlHelpPage()
71 return 'bdb';