mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
1f7fc1f76a
The entire framework repo (with the exception of system-generated files) has been amended to respect the 120c line-length limit. This is in preparation for the enforcement of this rule with PHP_CodeSniffer.
85 lines
2.3 KiB
PHP
85 lines
2.3 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 framework
|
|
* @author Tom Rix
|
|
*/
|
|
class DatabaseAdapterRegistry {
|
|
|
|
static $default_fields = array(
|
|
'server' => array(
|
|
'title' => 'Database server',
|
|
'envVar' => 'SS_DATABASE_SERVER',
|
|
'default' => 'localhost'
|
|
),
|
|
'username' => array(
|
|
'title' => 'Database username',
|
|
'envVar' => 'SS_DATABASE_USERNAME',
|
|
'default' => 'root'
|
|
),
|
|
'password' => array(
|
|
'title' => 'Database password',
|
|
'envVar' => 'SS_DATABASE_PASSWORD',
|
|
'default' => 'password'
|
|
),
|
|
'database' => array(
|
|
'title' => 'Database name',
|
|
'default' => 'SS_mysite',
|
|
'attributes' => array(
|
|
"onchange" => "this.value = this.value.replace(/[\/\\:*?"<>|. \t]+/g,'');"
|
|
)
|
|
),
|
|
);
|
|
|
|
/**
|
|
* Internal array of registered database adapters
|
|
*/
|
|
private static $adapters = array();
|
|
|
|
/**
|
|
* Add new adapter to the registry
|
|
* @param array $config Associative array of configuration details
|
|
*/
|
|
public static function register($config) {
|
|
$missingExtensionText = isset($config['missingExtensionText'])
|
|
? $config['missingExtensionText']
|
|
: 'The PHP extension is missing, please enable or install it.';
|
|
|
|
$path = explode('/', $config['helperPath']);
|
|
$moduleName = array_shift($path);
|
|
$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;
|
|
|
|
// set default fields if none are defined already
|
|
if(!isset($config['fields'])) $config['fields'] = self::$default_fields;
|
|
|
|
self::$adapters[$config['class']] = $config;
|
|
}
|
|
|
|
public static function unregister($class) {
|
|
if(isset($adapters[$class])) unset($adapters[$class]);
|
|
}
|
|
|
|
public static function autodiscover() {
|
|
foreach(glob(dirname(__FILE__) . '/../../../*', GLOB_ONLYDIR) as $directory) {
|
|
if(file_exists($directory . '/_register_database.php')) {
|
|
include_once($directory . '/_register_database.php');
|
|
}
|
|
}
|
|
}
|
|
|
|
public static function get_adapters() {
|
|
return self::$adapters;
|
|
}
|
|
|
|
}
|