53 $this->
IP = $installer->
getVar(
'IP' );
57 $confItems = array_merge(
59 'wgServer',
'wgScriptPath',
60 'wgPasswordSender',
'wgImageMagickConvertCommand',
'wgShellLocale',
61 'wgLanguageCode',
'wgEnableEmail',
'wgEnableUserEmail',
'wgDiff3',
62 'wgEnotifUserTalk',
'wgEnotifWatchlist',
'wgEmailAuthentication',
63 'wgDBtype',
'wgSecretKey',
'wgRightsUrl',
'wgSitename',
'wgRightsIcon',
64 'wgRightsText',
'_MainCacheType',
'wgEnableUploads',
65 '_MemCachedServers',
'wgDBserver',
'wgDBuser',
66 'wgDBpassword',
'wgUseInstantCommons',
'wgUpgradeKey',
'wgDefaultSkin',
67 'wgMetaNamespace',
'wgLogo',
'wgAuthenticationTokenVersion',
'wgPingback',
72 $unescaped = [
'wgRightsIcon',
'wgLogo' ];
74 'wgEnableEmail',
'wgEnableUserEmail',
'wgEnotifUserTalk',
75 'wgEnotifWatchlist',
'wgEmailAuthentication',
'wgEnableUploads',
'wgUseInstantCommons',
79 foreach ( $confItems
as $c ) {
80 $val = $installer->
getVar( $c );
82 if ( in_array( $c, $boolItems ) ) {
86 if ( !in_array( $c, $unescaped ) && $val !== null ) {
87 $val = self::escapePhpString( $val );
93 $this->dbSettings = $db->getLocalSettings();
94 $this->
values[
'wgEmergencyContact'] = $this->
values[
'wgPasswordSender'];
104 $this->groupPermissions[$group] = $rightsArr;
115 if ( is_array( $string ) || is_object( $string ) ) {
141 if ( count( $this->
skins ) ) {
144 # The following skins were automatically enabled:\n";
146 foreach ( $this->
skins as $skinName ) {
150 $localSettings .=
"\n";
155 # Enabled extensions. Most of the extensions are enabled by adding
156 # wfLoadExtensions('ExtensionName');
157 # to LocalSettings.php. Check specific extension documentation for more details.
158 # The following extensions were automatically enabled:\n";
164 $localSettings .=
"\n";
168 # End of automatically generated settings.
169 # Add more configuration options below.\n\n";
171 return $localSettings;
183 if (
$dir ===
'extensions' ) {
184 $jsonFile =
'extension.json';
185 $function =
'wfLoadExtension';
186 } elseif (
$dir ===
'skins' ) {
187 $jsonFile =
'skin.json';
188 $function =
'wfLoadSkin';
193 $encName = self::escapePhpString(
$name );
195 if ( file_exists(
"{$this->IP}/$dir/$encName/$jsonFile" ) ) {
196 return "$function( '$encName' );\n";
198 return "require_once \"\$IP/$dir/$encName/$encName.php\";\n";
208 file_put_contents( $fileName, $this->
getText() );
215 $servers = $this->
values[
'_MemCachedServers'];
221 $servers = explode(
',', $servers );
223 foreach ( $servers
as $srv ) {
228 return rtrim(
$ret,
', ' ) .
' ]';
236 if ( !$this->
values[
'wgImageMagickConvertCommand'] ) {
237 $this->
values[
'wgImageMagickConvertCommand'] =
'/usr/bin/convert';
243 if ( !$this->
values[
'wgShellLocale'] ) {
244 $this->
values[
'wgShellLocale'] =
'en_US.UTF-8';
251 if ( $this->
values[
'wgMetaNamespace'] !== $this->
values[
'wgSitename'] ) {
252 $metaNamespace =
"\$wgMetaNamespace = \"{$this->values['wgMetaNamespace']}\";\n";
257 if ( $this->groupPermissions ) {
258 $groupRights .=
"# The following permissions were set based on your choice in the installer\n";
259 foreach ( $this->groupPermissions
as $group => $rightArr ) {
260 $group = self::escapePhpString( $group );
261 foreach ( $rightArr
as $right => $perm ) {
262 $right = self::escapePhpString( $right );
263 $groupRights .=
"\$wgGroupPermissions['$group']['$right'] = " .
267 $groupRights .=
"\n";
269 if ( ( isset( $this->groupPermissions[
'*'][
'edit'] ) &&
270 $this->groupPermissions[
'*'][
'edit'] ===
false )
271 && ( isset( $this->groupPermissions[
'*'][
'createaccount'] ) &&
272 $this->groupPermissions[
'*'][
'createaccount'] ===
false )
273 && ( isset( $this->groupPermissions[
'*'][
'read'] ) &&
274 $this->groupPermissions[
'*'][
'read'] !==
false )
276 $noFollow =
"# Set \$wgNoFollowLinks to true if you open up your wiki to editing by\n"
277 .
"# the general public and wish to apply nofollow to external links as a\n"
278 .
"# deterrent to spammers. Nofollow is not a comprehensive anti-spam solution\n"
279 .
"# and open wikis will generally require other anti-spam measures; for more\n"
280 .
"# information, see https://www.mediawiki.org/wiki/Manual:Combating_spam\n"
281 .
"\$wgNoFollowLinks = false;\n\n";
286 if ( array_key_exists(
'wgServer', $this->
values ) && $this->
values[
'wgServer'] !== null ) {
287 $serverSetting =
"\n## The protocol and server name to use in fully-qualified URLs\n";
288 $serverSetting .=
"\$wgServer = \"{$this->values['wgServer']}\";";
291 switch ( $this->
values[
'_MainCacheType'] ) {
296 $cacheType =
'CACHE_' . strtoupper( $this->
values[
'_MainCacheType'] );
300 $cacheType =
'CACHE_NONE';
306 # This file was automatically generated by the MediaWiki {$GLOBALS['wgVersion']}
307 # installer. If you make manual changes, please keep track in case you
308 # need to recreate them later.
310 # See includes/DefaultSettings.php for all configurable settings
311 # and their default values, but don't forget to make changes in _this_
314 # Further documentation for configuration settings may be found at:
315 # https://www.mediawiki.org/wiki/Manual:Configuration_settings
317 # Protect against web entry
318 if ( !defined( 'MEDIAWIKI' ) ) {
322 ## Uncomment this to disable output compression
323 # \$wgDisableOutputCompression = true;
325 \$wgSitename = \"{$this->values['wgSitename']}\";
327 ## The URL base path to the directory containing the wiki;
328 ## defaults for all runtime URL paths are based off of this.
329 ## For more information on customizing the URLs
330 ## (like /w/index.php/Page_title to /wiki/Page_title) please see:
331 ## https://www.mediawiki.org/wiki/Manual:Short_URL
332 \$wgScriptPath = \"{$this->values['wgScriptPath']}\";
335 ## The URL path to static resources (images, scripts, etc.)
336 \$wgResourceBasePath = \$wgScriptPath;
338 ## The URL path to the logo. Make sure you change this from the default,
339 ## or else you'll overwrite your logo when you upgrade!
340 \$wgLogo = \"{$this->values['wgLogo']}\";
342 ## UPO means: this is also a user preference option
344 \$wgEnableEmail = {$this->values['wgEnableEmail']};
345 \$wgEnableUserEmail = {$this->values['wgEnableUserEmail']}; # UPO
347 \$wgEmergencyContact = \"{$this->values['wgEmergencyContact']}\";
348 \$wgPasswordSender = \"{$this->values['wgPasswordSender']}\";
350 \$wgEnotifUserTalk = {$this->values['wgEnotifUserTalk']}; # UPO
351 \$wgEnotifWatchlist = {$this->values['wgEnotifWatchlist']}; # UPO
352 \$wgEmailAuthentication = {$this->values['wgEmailAuthentication']};
355 \$wgDBtype = \"{$this->values['wgDBtype']}\";
356 \$wgDBserver = \"{$this->values['wgDBserver']}\";
357 \$wgDBname = \"{$this->values['wgDBname']}\";
358 \$wgDBuser = \"{$this->values['wgDBuser']}\";
359 \$wgDBpassword = \"{$this->values['wgDBpassword']}\";
363 ## Shared memory settings
364 \$wgMainCacheType = $cacheType;
365 \$wgMemCachedServers = $mcservers;
367 ## To enable image uploads, make sure the 'images' directory
368 ## is writable, then set this to true:
369 \$wgEnableUploads = {$this->values['wgEnableUploads']};
370 {$magic}\$wgUseImageMagick = true;
371 {$magic}\$wgImageMagickConvertCommand = \"{$this->values['wgImageMagickConvertCommand']}\";
373 # InstantCommons allows wiki to use images from https://commons.wikimedia.org
374 \$wgUseInstantCommons = {$this->values['wgUseInstantCommons']};
376 # Periodically send a pingback to https://www.mediawiki.org/ with basic data
377 # about this MediaWiki instance. The Wikimedia Foundation shares this data
378 # with MediaWiki developers to help guide future development efforts.
379 \$wgPingback = {$this->values['wgPingback']};
381 ## If you use ImageMagick (or any other shell command) on a
382 ## Linux server, this will need to be set to the name of an
383 ## available UTF-8 locale
384 {$locale}\$wgShellLocale = \"{$this->values['wgShellLocale']}\";
386 ## Set \$wgCacheDirectory to a writable directory on the web server
387 ## to make your wiki go slightly faster. The directory should not
388 ## be publically accessible from the web.
389 #\$wgCacheDirectory = \"\$IP/cache\";
391 # Site language code, should be one of the list in ./languages/data/Names.php
392 \$wgLanguageCode = \"{$this->values['wgLanguageCode']}\";
394 \$wgSecretKey = \"{$this->values['wgSecretKey']}\";
396 # Changing this will log out all existing sessions.
397 \$wgAuthenticationTokenVersion = \"{$this->values['wgAuthenticationTokenVersion']}\";
399 # Site upgrade key. Must be set to a string (default provided) to turn on the
400 # web installer while LocalSettings.php is in place
401 \$wgUpgradeKey = \"{$this->values['wgUpgradeKey']}\";
403 ## For attaching licensing metadata to pages, and displaying an
404 ## appropriate copyright notice / icon. GNU Free Documentation
405 ## License and Creative Commons licenses are supported so far.
406 \$wgRightsPage = \"\"; # Set to the title of a wiki page that describes your license/copyright
407 \$wgRightsUrl = \"{$this->values['wgRightsUrl']}\";
408 \$wgRightsText = \"{$this->values['wgRightsText']}\";
409 \$wgRightsIcon = \"{$this->values['wgRightsIcon']}\";
411 # Path to the GNU diff3 utility. Used for conflict resolution.
412 \$wgDiff3 = \"{$this->values['wgDiff3']}\";
414 {$groupRights}{$noFollow}## Default skin: you can change the default skin. Use the internal symbolic
415 ## names, ie 'vector', 'monobook':
416 \$wgDefaultSkin = \"{$this->values['wgDefaultSkin']}\";
Class for generating LocalSettings.php file.
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 & $ret
skin txt MediaWiki includes four core skins
static escapePhpString($string)
Returns the escaped version of a string of php code.
setGroupRights($group, $rightsArr)
For $wgGroupPermissions, set a given ['group']['permission'] value.
wfBoolToStr($value)
Convenience function converts boolean values into "true" or "false" (string) values.
__construct(Installer $installer)
Constructor.
buildMemcachedServerList()
The ContentHandler facility adds support for arbitrary content types on wiki instead of relying on wikitext for everything It was introduced in MediaWiki Each kind of and so on Built in content types as usual *javascript user provided javascript code *json simple implementation for use by extensions
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
generateExtEnableLine($dir, $name)
Generate the appropriate line to enable the given extension or skin.
A collection of public static functions to play with IP address and IP blocks.
injection txt This is an overview of how MediaWiki makes use of dependency injection The design described here grew from the discussion of RFC T384 The term dependency this means that anything an object needs to operate should be injected from the the object itself should only know narrow no concrete implementation of the logic it relies on The requirement to inject everything typically results in an architecture that based on two main types of and essentially stateless service objects that use other service objects to operate on the value objects As of the beginning MediaWiki is only starting to use the DI approach Much of the code still relies on global state or direct resulting in a highly cyclical dependency which acts as the top level factory for services in MediaWiki which can be used to gain access to default instances of various services MediaWikiServices however also allows new services to be defined and default services to be redefined Services are defined or redefined by providing a callback the instantiator that will return a new instance of the service When it will create an instance of MediaWikiServices and populate it with the services defined in the files listed by thereby bootstrapping the DI framework Per $wgServiceWiringFiles lists includes ServiceWiring php
getDBInstaller($type=false)
Get an instance of DatabaseInstaller for the specified DB type.
getText()
Return the full text of the generated LocalSettings.php file, including the extensions and skins...
getVar($name, $default=null)
Get an MW configuration variable, or internal installer configuration variable.
This code would result in ircNotify being run twice when an article is and once for brion Hooks can return three possible values
writeFile($fileName)
Write the generated LocalSettings to a file.
Allows to change the fields on the form that will be generated $name