mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
39 lines
1.7 KiB
PHP
39 lines
1.7 KiB
PHP
<?php
|
|
|
|
// Register database adapters available in SilverStripe
|
|
use SilverStripe\Dev\Install\DatabaseAdapterRegistry;
|
|
use SilverStripe\Dev\Install\MySQLDatabaseConfigurationHelper;
|
|
|
|
// Register MySQLi as a database adapter (listed as second option in Dev/Install/config-form.html)
|
|
DatabaseAdapterRegistry::register(
|
|
[
|
|
/** @skipUpgrade */
|
|
'class' => 'MySQLDatabase',
|
|
'module' => 'framework',
|
|
'title' => 'MySQL 5.0+ (using MySQLi)',
|
|
'helperPath' => __DIR__ . '/src/Dev/Install/MySQLDatabaseConfigurationHelper.php',
|
|
'helperClass' => MySQLDatabaseConfigurationHelper::class,
|
|
'supported' => class_exists('MySQLi'),
|
|
'missingExtensionText' =>
|
|
'The <a href="http://www.php.net/manual/en/book.mysqli.php">MySQLi</a>
|
|
PHP extension is not available. Please install or enable it and refresh this page.'
|
|
]
|
|
);
|
|
|
|
// Register MySQL PDO as a database adapter (listed as first option in Dev/Install/config-form.html)
|
|
DatabaseAdapterRegistry::register(
|
|
[
|
|
/** @skipUpgrade */
|
|
'class' => 'MySQLPDODatabase',
|
|
'module' => 'framework',
|
|
'title' => 'MySQL 5.0+ (using PDO) - <b>not recommended</b>',
|
|
'helperPath' => __DIR__ . '/src/Dev/Install/MySQLDatabaseConfigurationHelper.php',
|
|
'helperClass' => MySQLDatabaseConfigurationHelper::class,
|
|
'supported' => (class_exists('PDO') && in_array('mysql', PDO::getAvailableDrivers())),
|
|
'missingExtensionText' =>
|
|
'Either the <a href="http://www.php.net/manual/en/book.pdo.php">PDO Extension</a> or
|
|
the <a href="http://www.php.net/manual/en/ref.pdo-mysql.php">MySQL PDO Driver</a>
|
|
are unavailable. Please install or enable these and refresh this page.'
|
|
]
|
|
);
|