Go to the documentation of this file.
31 private $specifiedScriptPath =
false;
33 private $optionMap =
array(
34 'dbtype' =>
'wgDBtype',
35 'dbserver' =>
'wgDBserver',
36 'dbname' =>
'wgDBname',
37 'dbuser' =>
'wgDBuser',
38 'dbpass' =>
'wgDBpassword',
39 'dbprefix' =>
'wgDBprefix',
40 'dbtableoptions' =>
'wgDBTableOptions',
41 'dbmysql5' =>
'wgDBmysql5',
42 'dbport' =>
'wgDBport',
43 'dbschema' =>
'wgDBmwschema',
44 'dbpath' =>
'wgSQLiteDataDir',
45 'server' =>
'wgServer',
46 'scriptpath' =>
'wgScriptPath',
59 parent::__construct();
61 if ( isset( $option[
'scriptpath'] ) ) {
62 $this->specifiedScriptPath =
true;
65 foreach ( $this->optionMap
as $opt => $global ) {
66 if ( isset( $option[$opt] ) ) {
68 $this->
setVar( $global, $option[$opt] );
72 if ( isset( $option[
'lang'] ) ) {
74 $this->
setVar(
'_UserLang', $option[
'lang'] );
77 $wgLanguageCode = $option[
'lang'];
80 $this->
setVar(
'wgSitename', $siteName );
82 $metaNS =
$wgContLang->ucfirst( str_replace(
' ',
'_', $siteName ) );
83 if ( $metaNS ==
'MediaWiki' ) {
86 $this->
setVar(
'wgMetaNamespace', $metaNS );
89 $this->
setVar(
'_AdminName', $admin );
92 if ( !isset( $option[
'installdbuser'] ) ) {
93 $this->
setVar(
'_InstallUser',
94 $this->
getVar(
'wgDBuser' ) );
95 $this->
setVar(
'_InstallPassword',
96 $this->
getVar(
'wgDBpassword' ) );
98 $this->
setVar(
'_InstallUser',
99 $option[
'installdbuser'] );
100 $this->
setVar(
'_InstallPassword',
101 isset( $option[
'installdbpass'] ) ? $option[
'installdbpass'] :
"" );
104 $this->
setVar(
'_CreateDBAccount',
true );
107 if ( isset( $option[
'pass'] ) ) {
108 $this->
setVar(
'_AdminPassword', $option[
'pass'] );
124 array( $this,
'startStage' ),
125 array( $this,
'endStage' )
134 public function writeConfigurationFile(
$path ) {
136 $ls->writeFile(
"$path/LocalSettings.php" );
139 public function startStage( $step ) {
145 public function endStage( $step, $status ) {
151 echo $this->getMessageText( func_get_args() ) .
"\n";
156 echo
"***{$this->getMessageText( func_get_args() )}***\n";
165 protected function getMessageText(
$params ) {
170 $text = preg_replace(
'/<a href="(.*?)".*?>(.*?)<\/a>/',
'$2 <$1>', $text );
172 return html_entity_decode( strip_tags( $text ), ENT_QUOTES );
178 public function showHelpBox( $msg ) {
185 if ( count( $warnings ) !== 0 ) {
186 foreach ( $warnings
as $w ) {
187 call_user_func_array(
array( $this,
'showMessage' ), $w );
191 if ( !$status->isOk() ) {
198 if ( !$this->specifiedScriptPath ) {
202 return parent::envCheckPath();
__construct()
Constructor, always call this from child classes.
skin txt MediaWiki includes four core it has been set as the default in MediaWiki since the replacing Monobook it had been been the default skin since before being replaced by Vector largely rewritten in while keeping its appearance Several legacy skins were removed in the as the burden of supporting them became too heavy to bear Those in etc for skin dependent CSS etc for skin dependent JavaScript These can also be customised on a per user by etc This feature has led to a wide variety of user styles becoming that gallery is a good place to ending in php
showMessage( $msg)
UI interface for displaying a short message The parameters are like parameters to wfMessage().
showStatusMessage(Status $status)
Show a message to the installing user by using a Status object.
dirIsExecutable( $dir, $url)
Checks if scripts located in the given directory can be executed via the given URL.
performInstallation( $startCB, $endCB)
Actually perform the installation.
this class mediates it Skin Encapsulates a look and feel for the wiki All of the functions that render HTML and make choices about how to render it are here and are called from various other places when and is meant to be subclassed with other skins that may override some of its functions The User object contains a reference to a and so rather than having a global skin object we just rely on the global User and get the skin with $wgUser and also has some character encoding functions and other locale stuff The current user interface language is instantiated as and the content language as $wgContLang
envGetDefaultServer()
Helper function to be called from envCheckServer()
setVar( $name, $value)
Set a MW configuration variable, or internal installer configuration variable.
Generic operation result class Has warning/error list, boolean status and arbitrary value.
showError( $msg)
Same as showMessage(), but for displaying errors.
null means default in associative array with keys and values unescaped Should be merged with default with a value of false meaning to suppress the attribute in associative array with keys and values unescaped noclasses just before the function returns a value If you return an< a > element with HTML attributes $attribs and contents $html will be returned If you return $ret will be returned and may include noclasses after processing after in associative array form externallinks including delete and has completed for all link tables default is conds Array Extra conditions for the No matching items in log is displayed if loglist is empty msgKey Array If you want a nice box with a set this to the key of the message First element is the message additional optional elements are parameters for the key that are processed with wfMessage() -> params() ->parseAsBlock() - offset Set to overwrite offset parameter in $wgRequest set to '' to unset offset - wrap String Wrap the message in html(usually something like "<
static getExistingLocalSettings()
Determine if LocalSettings.php exists.
envCheckPath()
Environment check for setting $IP and $wgScriptPath.
the array() calling protocol came about after MediaWiki 1.4rc1.
List of Api Query prop modules.
static getLocalSettingsGenerator(Installer $installer)
Instantiates and returns an instance of LocalSettingsGenerator or its descendant classes.
when a variable name is used in a it is silently declared as a new masking the global
getVar( $name, $default=null)
Get an MW configuration variable, or internal installer configuration variable.
this class mediates it Skin Encapsulates a look and feel for the wiki All of the functions that render HTML and make choices about how to render it are here and are called from various other places when and is meant to be subclassed with other skins that may override some of its functions The User object contains a reference to a and so rather than having a global skin object we just rely on the global User and get the skin with $wgUser and also has some character encoding functions and other locale stuff The current user interface language is instantiated as $wgLang
if(count( $args)==0) $dir
getWarningsArray()
Get the list of warnings (but not errors)
This document is intended to provide useful advice for parties seeking to redistribute MediaWiki to end users It s targeted particularly at maintainers for Linux since it s been observed that distribution packages of MediaWiki often break We ve consistently had to recommend that users seeking support use official tarballs instead of their distribution s and this often solves whatever problem the user is having It would be nice if this could such as
static factory( $code)
Get a cached or new language object for a given language code.
static configuration should be added through ResourceLoaderGetConfigVars instead & $vars
getErrorsArray()
Get the list of errors (but not warnings)
static newFatal( $message)
Factory function for fatal errors.