MediaWiki
master
|
Class for setting up the MediaWiki database using SQLLite. More...
Public Member Functions | |
checkPrerequisites () | |
createManualTables () | |
Create database tables from scratch. More... | |
createTables () | |
getConnectForm () | |
Get HTML for a web form that configures this database. More... | |
getGlobalDefaults () | |
Get a name=>value map of MW configuration globals for the default values. More... | |
getLocalSettings () | |
getName () | |
Return the internal name, e.g. More... | |
isCompiled () | |
needsUpgrade () | |
openConnection () | |
setupDatabase () | |
setupSearchIndex (&$status) | |
submitConnectForm () | |
![]() | |
__construct ( $parent) | |
Construct and initialise parent. More... | |
createExtensionTables () | |
Create the tables for each extension the user enabled. More... | |
doUpgrade () | |
Perform database upgrades. More... | |
enableLB () | |
Set up LBFactory so that wfGetDB() etc. More... | |
getCheckBox ( $var, $label, $attribs=[], $helpData="") | |
Get a labelled checkbox to configure a local boolean variable. More... | |
getConnection () | |
Connect to the database using the administrative user/password currently defined in the session. More... | |
getGeneratedSchemaPath ( $db) | |
Return a path to the DBMS-specific automatically generated schema file. More... | |
getGlobalNames () | |
Get an array of MW configuration globals that will be configured by this class. More... | |
getInstallUserBox () | |
Get a standard install-user fieldset. More... | |
getInternalDefaults () | |
Get a name=>value map of internal variables used during installation. More... | |
getPasswordBox ( $var, $label, $attribs=[], $helpData="") | |
Get a labelled password box to configure a local variable. More... | |
getRadioSet ( $params) | |
Get a set of labelled radio buttons. More... | |
getReadableName () | |
Get the internationalised name for this DBMS. More... | |
getSchemaPath ( $db) | |
Return a path to the DBMS-specific schema file, otherwise default to tables.sql. More... | |
getSchemaVars () | |
Override this to provide DBMS-specific schema variables, to be substituted into tables.sql and other schema files. More... | |
getSettingsForm () | |
Get HTML for a web form that retrieves settings used for installation. More... | |
getTextBox ( $var, $label, $attribs=[], $helpData="") | |
Get a labelled text box to configure a local variable. More... | |
getUpdateKeysPath ( $db) | |
Return a path to the DBMS-specific update key file, otherwise default to update-keys.sql. More... | |
getVar ( $var, $default=null) | |
Get a variable, taking local defaults into account. More... | |
getWebUserBox ( $noCreateMsg=false) | |
Get a standard web-user fieldset. More... | |
insertUpdateKeys () | |
Insert update keys into table to prevent running unneeded updates. More... | |
outputHandler ( $string) | |
populateInterwikiTable () | |
Common function for databases that don't understand the MySQLish syntax of interwiki.list. More... | |
preInstall () | |
Allow DB installers a chance to make last-minute changes before installation occurs. More... | |
preUpgrade () | |
Allow DB installers a chance to make checks before upgrade. More... | |
setupSchemaVars () | |
Set appropriate schema variables in the current database connection. More... | |
setVar ( $name, $value) | |
Convenience alias for $this->parent->setVar() More... | |
setVarsFromRequest ( $varNames) | |
Convenience function to set variables based on form data. More... | |
submitInstallUserBox () | |
Submit a standard install user fieldset. More... | |
submitSettingsForm () | |
Set variables based on the request array, assuming it was submitted via the form return by getSettingsForm(). More... | |
submitWebUserBox () | |
Submit the form from getWebUserBox(). More... | |
Public Attributes | |
DatabaseSqlite | $db |
![]() | |
Database | $db = null |
The database connection. More... | |
WebInstaller | $parent |
The Installer object. More... | |
Static Public Attributes | |
static | $minimumVersion = '3.8.0' |
![]() | |
static string | $minimumVersion |
Set by subclasses. More... | |
Protected Member Functions | |
makeStubDBFile ( $dir, $db) | |
![]() | |
selectDatabase (Database $conn, string $database) | |
Protected Attributes | |
$globalNames | |
![]() | |
array | $globalNames = [] |
Array of MW configuration globals this class uses. More... | |
array | $internalDefaults = [] |
Internal variables for installation. More... | |
Static Protected Attributes | |
static | $notMinimumVersionMessage = 'config-outdated-sqlite' |
![]() | |
static string | $notMinimumVersionMessage |
Set by subclasses. More... | |
Additional Inherited Members | |
![]() | |
static | meetsMinimumRequirement ( $serverVersion) |
Whether the provided version meets the necessary requirements for this type. More... | |
![]() | |
static | checkExtension ( $name) |
Convenience function. More... | |
Class for setting up the MediaWiki database using SQLLite.
Definition at line 36 of file SqliteInstaller.php.
SqliteInstaller::checkPrerequisites | ( | ) |
Reimplemented from DatabaseInstaller.
Definition at line 62 of file SqliteInstaller.php.
References $db, and Wikimedia\Rdbms\DatabaseSqlite\getServerVersion().
SqliteInstaller::createManualTables | ( | ) |
Create database tables from scratch.
Reimplemented from DatabaseInstaller.
Definition at line 350 of file SqliteInstaller.php.
References StatusValue\newGood().
SqliteInstaller::createTables | ( | ) |
Reimplemented from DatabaseInstaller.
Definition at line 341 of file SqliteInstaller.php.
SqliteInstaller::getConnectForm | ( | ) |
Get HTML for a web form that configures this database.
Configuration at this time should be the minimum needed to connect and test whether install or upgrade is required.
If this is called, $this->parent can be assumed to be a WebInstaller.
Reimplemented from DatabaseInstaller.
Definition at line 91 of file SqliteInstaller.php.
References DatabaseInstaller\getTextBox().
SqliteInstaller::getGlobalDefaults | ( | ) |
Get a name=>value map of MW configuration globals for the default values.
Reimplemented from DatabaseInstaller.
Definition at line 74 of file SqliteInstaller.php.
SqliteInstaller::getLocalSettings | ( | ) |
Reimplemented from DatabaseInstaller.
Definition at line 384 of file SqliteInstaller.php.
References LocalSettingsGenerator\escapePhpString().
SqliteInstaller::getName | ( | ) |
Return the internal name, e.g.
'mysql', or 'sqlite'.
Reimplemented from DatabaseInstaller.
Definition at line 51 of file SqliteInstaller.php.
SqliteInstaller::isCompiled | ( | ) |
Reimplemented from DatabaseInstaller.
Definition at line 55 of file SqliteInstaller.php.
References DatabaseInstaller\checkExtension().
|
protected |
string | $dir | |
string | $db |
Definition at line 318 of file SqliteInstaller.php.
References $file, StatusValue\newFatal(), and StatusValue\newGood().
SqliteInstaller::needsUpgrade | ( | ) |
Reimplemented from DatabaseInstaller.
Definition at line 207 of file SqliteInstaller.php.
SqliteInstaller::openConnection | ( | ) |
Reimplemented from DatabaseInstaller.
Definition at line 188 of file SqliteInstaller.php.
References StatusValue\newGood().
SqliteInstaller::setupDatabase | ( | ) |
Reimplemented from DatabaseInstaller.
Definition at line 222 of file SqliteInstaller.php.
References $res, StatusValue\newFatal(), and StatusValue\newGood().
SqliteInstaller::setupSearchIndex | ( | & | $status | ) |
Status | &$status |
Definition at line 359 of file SqliteInstaller.php.
References $IP.
SqliteInstaller::submitConnectForm | ( | ) |
Reimplemented from DatabaseInstaller.
Definition at line 119 of file SqliteInstaller.php.
References DatabaseInstaller\getVar(), DatabaseInstaller\setVar(), and DatabaseInstaller\setVarsFromRequest().
DatabaseSqlite SqliteInstaller::$db |
Definition at line 44 of file SqliteInstaller.php.
Referenced by checkPrerequisites().
|
protected |
Definition at line 46 of file SqliteInstaller.php.
|
static |
Definition at line 38 of file SqliteInstaller.php.
|
staticprotected |
Definition at line 39 of file SqliteInstaller.php.