Documentation TYPO3 par Ameos |
00001 <?php 00002 /* $Id: bdb.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_bdb extends PMA_StorageEngine { 00006 function getVariables () { 00007 return array( 00008 'version_bdb' => array( 00009 'title' => $GLOBALS['strVersionInformation'] 00010 ) 00011 ); 00012 } 00013 function getVariablesLikePattern() { 00014 return 'version_bdb'; 00015 } 00016 } 00017 00018 ?>