mirror of
https://github.com/silverstripe/silverstripe-installer
synced 2024-10-22 17:05:33 +02:00
MINOR Code formatting
git-svn-id: svn://svn.silverstripe.com/silverstripe/open/phpinstaller/branches/2.4@100802 467b73ca-7a2a-4603-9d3b-597d59a354a9
This commit is contained in:
parent
897a3b49af
commit
c3918595fd
11
install.php
11
install.php
@ -73,21 +73,26 @@ DatabaseAdapterRegistry::register(
|
|||||||
'MySQLDatabase',
|
'MySQLDatabase',
|
||||||
'MySQL 4.1+',
|
'MySQL 4.1+',
|
||||||
'sapphire/dev/install/MySQLDatabaseConfigurationHelper.php',
|
'sapphire/dev/install/MySQLDatabaseConfigurationHelper.php',
|
||||||
function_exists('mysql_connect'));
|
function_exists('mysql_connect')
|
||||||
|
);
|
||||||
|
|
||||||
DatabaseAdapterRegistry::register(
|
DatabaseAdapterRegistry::register(
|
||||||
'MSSQLDatabase',
|
'MSSQLDatabase',
|
||||||
'SQL Server 2008',
|
'SQL Server 2008',
|
||||||
'mssql/code/MSSQLDatabaseConfigurationHelper.php',
|
'mssql/code/MSSQLDatabaseConfigurationHelper.php',
|
||||||
function_exists('mssql_connect') || function_exists('sqlsrv_connect'),
|
function_exists('mssql_connect') || function_exists('sqlsrv_connect'),
|
||||||
null,
|
null,
|
||||||
'Neither the <a href="http://php.net/mssql">mssql</a> or <a href="http://www.microsoft.com/sqlserver/2005/en/us/PHP-Driver.aspx">sqlsrv</a> PHP extensions are available. Please install or enable one of them and refresh this page.');
|
'Neither the <a href="http://php.net/mssql">mssql</a> or <a href="http://www.microsoft.com/sqlserver/2005/en/us/PHP-Driver.aspx">sqlsrv</a> PHP extensions are available. Please install or enable one of them and refresh this page.'
|
||||||
|
);
|
||||||
|
|
||||||
DatabaseAdapterRegistry::register(
|
DatabaseAdapterRegistry::register(
|
||||||
'PostgreSQLDatabase',
|
'PostgreSQLDatabase',
|
||||||
'PostgreSQL 8.3+',
|
'PostgreSQL 8.3+',
|
||||||
'postgresql/code/PostgreSQLDatabaseConfigurationHelper.php',
|
'postgresql/code/PostgreSQLDatabaseConfigurationHelper.php',
|
||||||
function_exists('pg_query'),
|
function_exists('pg_query'),
|
||||||
null,
|
null,
|
||||||
'The <a href="http://php.net/pgsql">pgsql</a> PHP extension is not available. Please install or enable it and refresh this page.');
|
'The <a href="http://php.net/pgsql">pgsql</a> PHP extension is not available. Please install or enable it and refresh this page.'
|
||||||
|
);
|
||||||
DatabaseAdapterRegistry::register(
|
DatabaseAdapterRegistry::register(
|
||||||
'SQLite3Database',
|
'SQLite3Database',
|
||||||
'SQLite 3.3+',
|
'SQLite 3.3+',
|
||||||
|
Loading…
Reference in New Issue
Block a user