mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
5c79ee20fa
git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/branches/2.4@100908 467b73ca-7a2a-4603-9d3b-597d59a354a9
52 lines
1.5 KiB
PHP
52 lines
1.5 KiB
PHP
<?php
|
|
|
|
/**
|
|
* This class keeps track of the available database adapters
|
|
* and provides a meaning of registering community built
|
|
* adapters in to the installer process.
|
|
*
|
|
* @package installer
|
|
* @author Tom Rix
|
|
*/
|
|
class DatabaseAdapterRegistry {
|
|
|
|
/**
|
|
* Internal array of registered database adapters
|
|
*/
|
|
private static $adapters = array();
|
|
|
|
/**
|
|
* Add new adapter to the registry
|
|
* @param array $config Associative array of configuration details
|
|
*/
|
|
static function register($config) {
|
|
$missingExtensionText = isset($config['missingExtensionText'])
|
|
? $config['missingExtensionText']
|
|
: 'The PHP extension is missing, please enable or install it.';
|
|
|
|
$moduleName = array_shift(explode('/', $config['helperPath']));
|
|
$missingModuleText = isset($config['missingModuleText'])
|
|
? $config['missingModuleText']
|
|
: 'The SilverStripe module, '.$moduleName.', is missing or incomplete. Please <a href="http://silverstripe.org/modules">download it</a>.';
|
|
|
|
$config['missingModuleText'] = $missingModuleText;
|
|
$config['missingExtensionText'] = $missingExtensionText;
|
|
|
|
self::$adapters[$config['class']] = $config;
|
|
}
|
|
|
|
static function unregister($class) {
|
|
if(isset($adapters[$class])) unset($adapters[$class]);
|
|
}
|
|
|
|
static function autodiscover() {
|
|
foreach(glob(dirname(__FILE__) . '/../../../*', GLOB_ONLYDIR) as $directory) {
|
|
if(file_exists($directory . '/_register_database.php')) include_once($directory . '/_register_database.php');
|
|
}
|
|
}
|
|
|
|
static function get_adapters() {
|
|
return self::$adapters;
|
|
}
|
|
|
|
} |