MediaWiki  1.30.0
Installer.php
Go to the documentation of this file.
1 <?php
27 
43 abstract class Installer {
44 
51  const MINIMUM_PCRE_VERSION = '7.2';
52 
56  protected $settings;
57 
63  protected $compiledDBs;
64 
70  protected $dbInstallers = [];
71 
77  protected $minMemorySize = 50;
78 
84  protected $parserTitle;
85 
91  protected $parserOptions;
92 
102  protected static $dbTypes = [
103  'mysql',
104  'postgres',
105  'oracle',
106  'mssql',
107  'sqlite',
108  ];
109 
121  protected $envChecks = [
122  'envCheckDB',
123  'envCheckBrokenXML',
124  'envCheckPCRE',
125  'envCheckMemory',
126  'envCheckCache',
127  'envCheckModSecurity',
128  'envCheckDiff3',
129  'envCheckGraphics',
130  'envCheckGit',
131  'envCheckServer',
132  'envCheckPath',
133  'envCheckShellLocale',
134  'envCheckUploadsDirectory',
135  'envCheckLibicu',
136  'envCheckSuhosinMaxValueLength',
137  'envCheck64Bit',
138  ];
139 
145  protected $envPreps = [
146  'envPrepServer',
147  'envPrepPath',
148  ];
149 
157  protected $defaultVarNames = [
158  'wgSitename',
159  'wgPasswordSender',
160  'wgLanguageCode',
161  'wgRightsIcon',
162  'wgRightsText',
163  'wgRightsUrl',
164  'wgEnableEmail',
165  'wgEnableUserEmail',
166  'wgEnotifUserTalk',
167  'wgEnotifWatchlist',
168  'wgEmailAuthentication',
169  'wgDBname',
170  'wgDBtype',
171  'wgDiff3',
172  'wgImageMagickConvertCommand',
173  'wgGitBin',
174  'IP',
175  'wgScriptPath',
176  'wgMetaNamespace',
177  'wgDeletedDirectory',
178  'wgEnableUploads',
179  'wgShellLocale',
180  'wgSecretKey',
181  'wgUseInstantCommons',
182  'wgUpgradeKey',
183  'wgDefaultSkin',
184  'wgPingback',
185  ];
186 
194  protected $internalDefaults = [
195  '_UserLang' => 'en',
196  '_Environment' => false,
197  '_RaiseMemory' => false,
198  '_UpgradeDone' => false,
199  '_InstallDone' => false,
200  '_Caches' => [],
201  '_InstallPassword' => '',
202  '_SameAccount' => true,
203  '_CreateDBAccount' => false,
204  '_NamespaceType' => 'site-name',
205  '_AdminName' => '', // will be set later, when the user selects language
206  '_AdminPassword' => '',
207  '_AdminPasswordConfirm' => '',
208  '_AdminEmail' => '',
209  '_Subscribe' => false,
210  '_SkipOptional' => 'continue',
211  '_RightsProfile' => 'wiki',
212  '_LicenseCode' => 'none',
213  '_CCDone' => false,
214  '_Extensions' => [],
215  '_Skins' => [],
216  '_MemCachedServers' => '',
217  '_UpgradeKeySupplied' => false,
218  '_ExistingDBSettings' => false,
219 
220  // $wgLogo is probably wrong (T50084); set something that will work.
221  // Single quotes work fine here, as LocalSettingsGenerator outputs this unescaped.
222  'wgLogo' => '$wgResourceBasePath/resources/assets/wiki.png',
223  'wgAuthenticationTokenVersion' => 1,
224  ];
225 
231  private $installSteps = [];
232 
238  protected $extraInstallSteps = [];
239 
245  protected $objectCaches = [
246  'xcache' => 'xcache_get',
247  'apc' => 'apc_fetch',
248  'apcu' => 'apcu_fetch',
249  'wincache' => 'wincache_ucache_get'
250  ];
251 
257  public $rightsProfiles = [
258  'wiki' => [],
259  'no-anon' => [
260  '*' => [ 'edit' => false ]
261  ],
262  'fishbowl' => [
263  '*' => [
264  'createaccount' => false,
265  'edit' => false,
266  ],
267  ],
268  'private' => [
269  '*' => [
270  'createaccount' => false,
271  'edit' => false,
272  'read' => false,
273  ],
274  ],
275  ];
276 
282  public $licenses = [
283  'cc-by' => [
284  'url' => 'https://creativecommons.org/licenses/by/4.0/',
285  'icon' => '$wgResourceBasePath/resources/assets/licenses/cc-by.png',
286  ],
287  'cc-by-sa' => [
288  'url' => 'https://creativecommons.org/licenses/by-sa/4.0/',
289  'icon' => '$wgResourceBasePath/resources/assets/licenses/cc-by-sa.png',
290  ],
291  'cc-by-nc-sa' => [
292  'url' => 'https://creativecommons.org/licenses/by-nc-sa/4.0/',
293  'icon' => '$wgResourceBasePath/resources/assets/licenses/cc-by-nc-sa.png',
294  ],
295  'cc-0' => [
296  'url' => 'https://creativecommons.org/publicdomain/zero/1.0/',
297  'icon' => '$wgResourceBasePath/resources/assets/licenses/cc-0.png',
298  ],
299  'gfdl' => [
300  'url' => 'https://www.gnu.org/copyleft/fdl.html',
301  'icon' => '$wgResourceBasePath/resources/assets/licenses/gnu-fdl.png',
302  ],
303  'none' => [
304  'url' => '',
305  'icon' => '',
306  'text' => ''
307  ],
308  'cc-choose' => [
309  // Details will be filled in by the selector.
310  'url' => '',
311  'icon' => '',
312  'text' => '',
313  ],
314  ];
315 
320  'https://lists.wikimedia.org/mailman/subscribe/mediawiki-announce';
321 
326  'ca', 'cs', 'da', 'de', 'en', 'es', 'et', 'eu', 'fi', 'fr', 'hr', 'hu',
327  'it', 'ja', 'ko', 'lt', 'nl', 'no', 'pl', 'pt', 'pt-br', 'ro', 'ru',
328  'sl', 'sr', 'sv', 'tr', 'uk'
329  ];
330 
338  abstract public function showMessage( $msg /*, ... */ );
339 
344  abstract public function showError( $msg /*, ... */ );
345 
350  abstract public function showStatusMessage( Status $status );
351 
362  public static function getInstallerConfig( Config $baseConfig ) {
363  $configOverrides = new HashConfig();
364 
365  // disable (problematic) object cache types explicitly, preserving all other (working) ones
366  // bug T113843
367  $emptyCache = [ 'class' => 'EmptyBagOStuff' ];
368 
369  $objectCaches = [
370  CACHE_NONE => $emptyCache,
371  CACHE_DB => $emptyCache,
372  CACHE_ANYTHING => $emptyCache,
373  CACHE_MEMCACHED => $emptyCache,
374  ] + $baseConfig->get( 'ObjectCaches' );
375 
376  $configOverrides->set( 'ObjectCaches', $objectCaches );
377 
378  // Load the installer's i18n.
379  $messageDirs = $baseConfig->get( 'MessagesDirs' );
380  $messageDirs['MediawikiInstaller'] = __DIR__ . '/i18n';
381 
382  $configOverrides->set( 'MessagesDirs', $messageDirs );
383 
384  $installerConfig = new MultiConfig( [ $configOverrides, $baseConfig ] );
385 
386  // make sure we use the installer config as the main config
387  $configRegistry = $baseConfig->get( 'ConfigRegistry' );
388  $configRegistry['main'] = function () use ( $installerConfig ) {
389  return $installerConfig;
390  };
391 
392  $configOverrides->set( 'ConfigRegistry', $configRegistry );
393 
394  return $installerConfig;
395  }
396 
400  public function __construct() {
402 
403  $defaultConfig = new GlobalVarConfig(); // all the stuff from DefaultSettings.php
404  $installerConfig = self::getInstallerConfig( $defaultConfig );
405 
406  // Reset all services and inject config overrides
408 
409  // Don't attempt to load user language options (T126177)
410  // This will be overridden in the web installer with the user-specified language
411  RequestContext::getMain()->setLanguage( 'en' );
412 
413  // Disable the i18n cache
414  // TODO: manage LocalisationCache singleton in MediaWikiServices
415  Language::getLocalisationCache()->disableBackend();
416 
417  // Disable all global services, since we don't have any configuration yet!
419 
420  // Disable object cache (otherwise CACHE_ANYTHING will try CACHE_DB and
421  // SqlBagOStuff will then throw since we just disabled wfGetDB)
422  $wgObjectCaches = MediaWikiServices::getInstance()->getMainConfig()->get( 'ObjectCaches' );
424 
425  // Having a user with id = 0 safeguards us from DB access via User::loadOptions().
426  $wgUser = User::newFromId( 0 );
427  RequestContext::getMain()->setUser( $wgUser );
428 
430 
431  foreach ( $this->defaultVarNames as $var ) {
432  $this->settings[$var] = $GLOBALS[$var];
433  }
434 
435  $this->doEnvironmentPreps();
436 
437  $this->compiledDBs = [];
438  foreach ( self::getDBTypes() as $type ) {
439  $installer = $this->getDBInstaller( $type );
440 
441  if ( !$installer->isCompiled() ) {
442  continue;
443  }
444  $this->compiledDBs[] = $type;
445  }
446 
447  $this->parserTitle = Title::newFromText( 'Installer' );
448  $this->parserOptions = new ParserOptions( $wgUser ); // language will be wrong :(
449  $this->parserOptions->setEditSection( false );
450  $this->parserOptions->setWrapOutputClass( false );
451  // Don't try to access DB before user language is initialised
452  $this->setParserLanguage( Language::factory( 'en' ) );
453  }
454 
460  public static function getDBTypes() {
461  return self::$dbTypes;
462  }
463 
477  public function doEnvironmentChecks() {
478  // Php version has already been checked by entry scripts
479  // Show message here for information purposes
480  if ( wfIsHHVM() ) {
481  $this->showMessage( 'config-env-hhvm', HHVM_VERSION );
482  } else {
483  $this->showMessage( 'config-env-php', PHP_VERSION );
484  }
485 
486  $good = true;
487  // Must go here because an old version of PCRE can prevent other checks from completing
488  list( $pcreVersion ) = explode( ' ', PCRE_VERSION, 2 );
489  if ( version_compare( $pcreVersion, self::MINIMUM_PCRE_VERSION, '<' ) ) {
490  $this->showError( 'config-pcre-old', self::MINIMUM_PCRE_VERSION, $pcreVersion );
491  $good = false;
492  } else {
493  foreach ( $this->envChecks as $check ) {
494  $status = $this->$check();
495  if ( $status === false ) {
496  $good = false;
497  }
498  }
499  }
500 
501  $this->setVar( '_Environment', $good );
502 
503  return $good ? Status::newGood() : Status::newFatal( 'config-env-bad' );
504  }
505 
506  public function doEnvironmentPreps() {
507  foreach ( $this->envPreps as $prep ) {
508  $this->$prep();
509  }
510  }
511 
518  public function setVar( $name, $value ) {
519  $this->settings[$name] = $value;
520  }
521 
532  public function getVar( $name, $default = null ) {
533  if ( !isset( $this->settings[$name] ) ) {
534  return $default;
535  } else {
536  return $this->settings[$name];
537  }
538  }
539 
545  public function getCompiledDBs() {
546  return $this->compiledDBs;
547  }
548 
556  public static function getDBInstallerClass( $type ) {
557  return ucfirst( $type ) . 'Installer';
558  }
559 
567  public function getDBInstaller( $type = false ) {
568  if ( !$type ) {
569  $type = $this->getVar( 'wgDBtype' );
570  }
571 
572  $type = strtolower( $type );
573 
574  if ( !isset( $this->dbInstallers[$type] ) ) {
575  $class = self::getDBInstallerClass( $type );
576  $this->dbInstallers[$type] = new $class( $this );
577  }
578 
579  return $this->dbInstallers[$type];
580  }
581 
587  public static function getExistingLocalSettings() {
588  global $IP;
589 
590  // You might be wondering why this is here. Well if you don't do this
591  // then some poorly-formed extensions try to call their own classes
592  // after immediately registering them. We really need to get extension
593  // registration out of the global scope and into a real format.
594  // @see https://phabricator.wikimedia.org/T69440
596  $wgAutoloadClasses = [];
597 
598  // @codingStandardsIgnoreStart
599  // LocalSettings.php should not call functions, except wfLoadSkin/wfLoadExtensions
600  // Define the required globals here, to ensure, the functions can do it work correctly.
602  // @codingStandardsIgnoreEnd
603 
604  MediaWiki\suppressWarnings();
605  $_lsExists = file_exists( "$IP/LocalSettings.php" );
606  MediaWiki\restoreWarnings();
607 
608  if ( !$_lsExists ) {
609  return false;
610  }
611  unset( $_lsExists );
612 
613  require "$IP/includes/DefaultSettings.php";
614  require "$IP/LocalSettings.php";
615 
616  return get_defined_vars();
617  }
618 
628  public function getFakePassword( $realPassword ) {
629  return str_repeat( '*', strlen( $realPassword ) );
630  }
631 
639  public function setPassword( $name, $value ) {
640  if ( !preg_match( '/^\*+$/', $value ) ) {
641  $this->setVar( $name, $value );
642  }
643  }
644 
656  public static function maybeGetWebserverPrimaryGroup() {
657  if ( !function_exists( 'posix_getegid' ) || !function_exists( 'posix_getpwuid' ) ) {
658  # I don't know this, this isn't UNIX.
659  return null;
660  }
661 
662  # posix_getegid() *not* getmygid() because we want the group of the webserver,
663  # not whoever owns the current script.
664  $gid = posix_getegid();
665  $group = posix_getpwuid( $gid )['name'];
666 
667  return $group;
668  }
669 
686  public function parse( $text, $lineStart = false ) {
688 
689  try {
690  $out = $wgParser->parse( $text, $this->parserTitle, $this->parserOptions, $lineStart );
691  $html = $out->getText();
692  } catch ( MediaWiki\Services\ServiceDisabledException $e ) {
693  $html = '<!--DB access attempted during parse--> ' . htmlspecialchars( $text );
694 
695  if ( !empty( $this->debug ) ) {
696  $html .= "<!--\n" . $e->getTraceAsString() . "\n-->";
697  }
698  }
699 
700  return $html;
701  }
702 
706  public function getParserOptions() {
707  return $this->parserOptions;
708  }
709 
710  public function disableLinkPopups() {
711  $this->parserOptions->setExternalLinkTarget( false );
712  }
713 
714  public function restoreLinkPopups() {
716  $this->parserOptions->setExternalLinkTarget( $wgExternalLinkTarget );
717  }
718 
727  public function populateSiteStats( DatabaseInstaller $installer ) {
728  $status = $installer->getConnection();
729  if ( !$status->isOK() ) {
730  return $status;
731  }
732  $status->value->insert(
733  'site_stats',
734  [
735  'ss_row_id' => 1,
736  'ss_total_edits' => 0,
737  'ss_good_articles' => 0,
738  'ss_total_pages' => 0,
739  'ss_users' => 0,
740  'ss_active_users' => 0,
741  'ss_images' => 0
742  ],
743  __METHOD__, 'IGNORE'
744  );
745 
746  return Status::newGood();
747  }
748 
753  protected function envCheckDB() {
754  global $wgLang;
755 
756  $allNames = [];
757 
758  // Messages: config-type-mysql, config-type-postgres, config-type-oracle,
759  // config-type-sqlite
760  foreach ( self::getDBTypes() as $name ) {
761  $allNames[] = wfMessage( "config-type-$name" )->text();
762  }
763 
764  $databases = $this->getCompiledDBs();
765 
766  $databases = array_flip( $databases );
767  foreach ( array_keys( $databases ) as $db ) {
768  $installer = $this->getDBInstaller( $db );
769  $status = $installer->checkPrerequisites();
770  if ( !$status->isGood() ) {
771  $this->showStatusMessage( $status );
772  }
773  if ( !$status->isOK() ) {
774  unset( $databases[$db] );
775  }
776  }
777  $databases = array_flip( $databases );
778  if ( !$databases ) {
779  $this->showError( 'config-no-db', $wgLang->commaList( $allNames ), count( $allNames ) );
780 
781  // @todo FIXME: This only works for the web installer!
782  return false;
783  }
784 
785  return true;
786  }
787 
792  protected function envCheckBrokenXML() {
793  $test = new PhpXmlBugTester();
794  if ( !$test->ok ) {
795  $this->showError( 'config-brokenlibxml' );
796 
797  return false;
798  }
799 
800  return true;
801  }
802 
811  protected function envCheckPCRE() {
812  MediaWiki\suppressWarnings();
813  $regexd = preg_replace( '/[\x{0430}-\x{04FF}]/iu', '', '-АБВГД-' );
814  // Need to check for \p support too, as PCRE can be compiled
815  // with utf8 support, but not unicode property support.
816  // check that \p{Zs} (space separators) matches
817  // U+3000 (Ideographic space)
818  $regexprop = preg_replace( '/\p{Zs}/u', '', "-\xE3\x80\x80-" );
819  MediaWiki\restoreWarnings();
820  if ( $regexd != '--' || $regexprop != '--' ) {
821  $this->showError( 'config-pcre-no-utf8' );
822 
823  return false;
824  }
825 
826  return true;
827  }
828 
833  protected function envCheckMemory() {
834  $limit = ini_get( 'memory_limit' );
835 
836  if ( !$limit || $limit == -1 ) {
837  return true;
838  }
839 
840  $n = wfShorthandToInteger( $limit );
841 
842  if ( $n < $this->minMemorySize * 1024 * 1024 ) {
843  $newLimit = "{$this->minMemorySize}M";
844 
845  if ( ini_set( "memory_limit", $newLimit ) === false ) {
846  $this->showMessage( 'config-memory-bad', $limit );
847  } else {
848  $this->showMessage( 'config-memory-raised', $limit, $newLimit );
849  $this->setVar( '_RaiseMemory', true );
850  }
851  }
852 
853  return true;
854  }
855 
859  protected function envCheckCache() {
860  $caches = [];
861  foreach ( $this->objectCaches as $name => $function ) {
862  if ( function_exists( $function ) ) {
863  if ( $name == 'xcache' && !wfIniGetBool( 'xcache.var_size' ) ) {
864  continue;
865  }
866  $caches[$name] = true;
867  }
868  }
869 
870  if ( !$caches ) {
871  $key = 'config-no-cache-apcu';
872  $this->showMessage( $key );
873  }
874 
875  $this->setVar( '_Caches', $caches );
876  }
877 
882  protected function envCheckModSecurity() {
883  if ( self::apacheModulePresent( 'mod_security' )
884  || self::apacheModulePresent( 'mod_security2' ) ) {
885  $this->showMessage( 'config-mod-security' );
886  }
887 
888  return true;
889  }
890 
895  protected function envCheckDiff3() {
896  $names = [ "gdiff3", "diff3", "diff3.exe" ];
897  $versionInfo = [ '$1 --version 2>&1', 'GNU diffutils' ];
898 
899  $diff3 = self::locateExecutableInDefaultPaths( $names, $versionInfo );
900 
901  if ( $diff3 ) {
902  $this->setVar( 'wgDiff3', $diff3 );
903  } else {
904  $this->setVar( 'wgDiff3', false );
905  $this->showMessage( 'config-diff3-bad' );
906  }
907 
908  return true;
909  }
910 
915  protected function envCheckGraphics() {
916  $names = [ wfIsWindows() ? 'convert.exe' : 'convert' ];
917  $versionInfo = [ '$1 -version', 'ImageMagick' ];
918  $convert = self::locateExecutableInDefaultPaths( $names, $versionInfo );
919 
920  $this->setVar( 'wgImageMagickConvertCommand', '' );
921  if ( $convert ) {
922  $this->setVar( 'wgImageMagickConvertCommand', $convert );
923  $this->showMessage( 'config-imagemagick', $convert );
924 
925  return true;
926  } elseif ( function_exists( 'imagejpeg' ) ) {
927  $this->showMessage( 'config-gd' );
928  } else {
929  $this->showMessage( 'config-no-scaling' );
930  }
931 
932  return true;
933  }
934 
941  protected function envCheckGit() {
942  $names = [ wfIsWindows() ? 'git.exe' : 'git' ];
943  $versionInfo = [ '$1 --version', 'git version' ];
944 
945  $git = self::locateExecutableInDefaultPaths( $names, $versionInfo );
946 
947  if ( $git ) {
948  $this->setVar( 'wgGitBin', $git );
949  $this->showMessage( 'config-git', $git );
950  } else {
951  $this->setVar( 'wgGitBin', false );
952  $this->showMessage( 'config-git-bad' );
953  }
954 
955  return true;
956  }
957 
963  protected function envCheckServer() {
964  $server = $this->envGetDefaultServer();
965  if ( $server !== null ) {
966  $this->showMessage( 'config-using-server', $server );
967  }
968  return true;
969  }
970 
976  protected function envCheckPath() {
977  $this->showMessage(
978  'config-using-uri',
979  $this->getVar( 'wgServer' ),
980  $this->getVar( 'wgScriptPath' )
981  );
982  return true;
983  }
984 
989  protected function envCheckShellLocale() {
990  $os = php_uname( 's' );
991  $supported = [ 'Linux', 'SunOS', 'HP-UX', 'Darwin' ]; # Tested these
992 
993  if ( !in_array( $os, $supported ) ) {
994  return true;
995  }
996 
997  # Get a list of available locales.
998  $ret = false;
999  $lines = wfShellExec( '/usr/bin/locale -a', $ret );
1000 
1001  if ( $ret ) {
1002  return true;
1003  }
1004 
1005  $lines = array_map( 'trim', explode( "\n", $lines ) );
1006  $candidatesByLocale = [];
1007  $candidatesByLang = [];
1008 
1009  foreach ( $lines as $line ) {
1010  if ( $line === '' ) {
1011  continue;
1012  }
1013 
1014  if ( !preg_match( '/^([a-zA-Z]+)(_[a-zA-Z]+|)\.(utf8|UTF-8)(@[a-zA-Z_]*|)$/i', $line, $m ) ) {
1015  continue;
1016  }
1017 
1018  list( , $lang, , , ) = $m;
1019 
1020  $candidatesByLocale[$m[0]] = $m;
1021  $candidatesByLang[$lang][] = $m;
1022  }
1023 
1024  # Try the current value of LANG.
1025  if ( isset( $candidatesByLocale[getenv( 'LANG' )] ) ) {
1026  $this->setVar( 'wgShellLocale', getenv( 'LANG' ) );
1027 
1028  return true;
1029  }
1030 
1031  # Try the most common ones.
1032  $commonLocales = [ 'C.UTF-8', 'en_US.UTF-8', 'en_US.utf8', 'de_DE.UTF-8', 'de_DE.utf8' ];
1033  foreach ( $commonLocales as $commonLocale ) {
1034  if ( isset( $candidatesByLocale[$commonLocale] ) ) {
1035  $this->setVar( 'wgShellLocale', $commonLocale );
1036 
1037  return true;
1038  }
1039  }
1040 
1041  # Is there an available locale in the Wiki's language?
1042  $wikiLang = $this->getVar( 'wgLanguageCode' );
1043 
1044  if ( isset( $candidatesByLang[$wikiLang] ) ) {
1045  $m = reset( $candidatesByLang[$wikiLang] );
1046  $this->setVar( 'wgShellLocale', $m[0] );
1047 
1048  return true;
1049  }
1050 
1051  # Are there any at all?
1052  if ( count( $candidatesByLocale ) ) {
1053  $m = reset( $candidatesByLocale );
1054  $this->setVar( 'wgShellLocale', $m[0] );
1055 
1056  return true;
1057  }
1058 
1059  # Give up.
1060  return true;
1061  }
1062 
1067  protected function envCheckUploadsDirectory() {
1068  global $IP;
1069 
1070  $dir = $IP . '/images/';
1071  $url = $this->getVar( 'wgServer' ) . $this->getVar( 'wgScriptPath' ) . '/images/';
1072  $safe = !$this->dirIsExecutable( $dir, $url );
1073 
1074  if ( !$safe ) {
1075  $this->showMessage( 'config-uploads-not-safe', $dir );
1076  }
1077 
1078  return true;
1079  }
1080 
1086  protected function envCheckSuhosinMaxValueLength() {
1087  $maxValueLength = ini_get( 'suhosin.get.max_value_length' );
1088  if ( $maxValueLength > 0 && $maxValueLength < 1024 ) {
1089  // Only warn if the value is below the sane 1024
1090  $this->showMessage( 'config-suhosin-max-value-length', $maxValueLength );
1091  }
1092 
1093  return true;
1094  }
1095 
1102  protected function envCheck64Bit() {
1103  if ( PHP_INT_SIZE == 4 ) {
1104  $this->showMessage( 'config-using-32bit' );
1105  }
1106 
1107  return true;
1108  }
1109 
1115  protected function unicodeChar( $c ) {
1116  $c = hexdec( $c );
1117  if ( $c <= 0x7F ) {
1118  return chr( $c );
1119  } elseif ( $c <= 0x7FF ) {
1120  return chr( 0xC0 | $c >> 6 ) . chr( 0x80 | $c & 0x3F );
1121  } elseif ( $c <= 0xFFFF ) {
1122  return chr( 0xE0 | $c >> 12 ) . chr( 0x80 | $c >> 6 & 0x3F ) .
1123  chr( 0x80 | $c & 0x3F );
1124  } elseif ( $c <= 0x10FFFF ) {
1125  return chr( 0xF0 | $c >> 18 ) . chr( 0x80 | $c >> 12 & 0x3F ) .
1126  chr( 0x80 | $c >> 6 & 0x3F ) .
1127  chr( 0x80 | $c & 0x3F );
1128  } else {
1129  return false;
1130  }
1131  }
1132 
1136  protected function envCheckLibicu() {
1144  $not_normal_c = $this->unicodeChar( "FA6C" );
1145  $normal_c = $this->unicodeChar( "242EE" );
1146 
1147  $useNormalizer = 'php';
1148  $needsUpdate = false;
1149 
1150  if ( function_exists( 'normalizer_normalize' ) ) {
1151  $useNormalizer = 'intl';
1152  $intl = normalizer_normalize( $not_normal_c, Normalizer::FORM_C );
1153  if ( $intl !== $normal_c ) {
1154  $needsUpdate = true;
1155  }
1156  }
1157 
1158  // Uses messages 'config-unicode-using-php' and 'config-unicode-using-intl'
1159  if ( $useNormalizer === 'php' ) {
1160  $this->showMessage( 'config-unicode-pure-php-warning' );
1161  } else {
1162  $this->showMessage( 'config-unicode-using-' . $useNormalizer );
1163  if ( $needsUpdate ) {
1164  $this->showMessage( 'config-unicode-update-warning' );
1165  }
1166  }
1167  }
1168 
1172  protected function envPrepServer() {
1173  $server = $this->envGetDefaultServer();
1174  if ( $server !== null ) {
1175  $this->setVar( 'wgServer', $server );
1176  }
1177  }
1178 
1183  abstract protected function envGetDefaultServer();
1184 
1188  protected function envPrepPath() {
1189  global $IP;
1190  $IP = dirname( dirname( __DIR__ ) );
1191  $this->setVar( 'IP', $IP );
1192  }
1193 
1201  protected static function getPossibleBinPaths() {
1202  return array_merge(
1203  [ '/usr/bin', '/usr/local/bin', '/opt/csw/bin',
1204  '/usr/gnu/bin', '/usr/sfw/bin', '/sw/bin', '/opt/local/bin' ],
1205  explode( PATH_SEPARATOR, getenv( 'PATH' ) )
1206  );
1207  }
1208 
1226  public static function locateExecutable( $path, $names, $versionInfo = false ) {
1227  if ( !is_array( $names ) ) {
1228  $names = [ $names ];
1229  }
1230 
1231  foreach ( $names as $name ) {
1232  $command = $path . DIRECTORY_SEPARATOR . $name;
1233 
1234  MediaWiki\suppressWarnings();
1235  $file_exists = is_executable( $command );
1236  MediaWiki\restoreWarnings();
1237 
1238  if ( $file_exists ) {
1239  if ( !$versionInfo ) {
1240  return $command;
1241  }
1242 
1243  $file = str_replace( '$1', wfEscapeShellArg( $command ), $versionInfo[0] );
1244  if ( strstr( wfShellExec( $file ), $versionInfo[1] ) !== false ) {
1245  return $command;
1246  }
1247  }
1248  }
1249 
1250  return false;
1251  }
1252 
1265  public static function locateExecutableInDefaultPaths( $names, $versionInfo = false ) {
1266  foreach ( self::getPossibleBinPaths() as $path ) {
1267  $exe = self::locateExecutable( $path, $names, $versionInfo );
1268  if ( $exe !== false ) {
1269  return $exe;
1270  }
1271  }
1272 
1273  return false;
1274  }
1275 
1284  public function dirIsExecutable( $dir, $url ) {
1285  $scriptTypes = [
1286  'php' => [
1287  "<?php echo 'ex' . 'ec';",
1288  "#!/var/env php5\n<?php echo 'ex' . 'ec';",
1289  ],
1290  ];
1291 
1292  // it would be good to check other popular languages here, but it'll be slow.
1293 
1294  MediaWiki\suppressWarnings();
1295 
1296  foreach ( $scriptTypes as $ext => $contents ) {
1297  foreach ( $contents as $source ) {
1298  $file = 'exectest.' . $ext;
1299 
1300  if ( !file_put_contents( $dir . $file, $source ) ) {
1301  break;
1302  }
1303 
1304  try {
1305  $text = Http::get( $url . $file, [ 'timeout' => 3 ], __METHOD__ );
1306  } catch ( Exception $e ) {
1307  // Http::get throws with allow_url_fopen = false and no curl extension.
1308  $text = null;
1309  }
1310  unlink( $dir . $file );
1311 
1312  if ( $text == 'exec' ) {
1313  MediaWiki\restoreWarnings();
1314 
1315  return $ext;
1316  }
1317  }
1318  }
1319 
1320  MediaWiki\restoreWarnings();
1321 
1322  return false;
1323  }
1324 
1331  public static function apacheModulePresent( $moduleName ) {
1332  if ( function_exists( 'apache_get_modules' ) && in_array( $moduleName, apache_get_modules() ) ) {
1333  return true;
1334  }
1335  // try it the hard way
1336  ob_start();
1337  phpinfo( INFO_MODULES );
1338  $info = ob_get_clean();
1339 
1340  return strpos( $info, $moduleName ) !== false;
1341  }
1342 
1348  public function setParserLanguage( $lang ) {
1349  $this->parserOptions->setTargetLanguage( $lang );
1350  $this->parserOptions->setUserLang( $lang );
1351  }
1352 
1358  protected function getDocUrl( $page ) {
1359  return "{$_SERVER['PHP_SELF']}?page=" . urlencode( $page );
1360  }
1361 
1371  public function findExtensions( $directory = 'extensions' ) {
1372  if ( $this->getVar( 'IP' ) === null ) {
1373  return [];
1374  }
1375 
1376  $extDir = $this->getVar( 'IP' ) . '/' . $directory;
1377  if ( !is_readable( $extDir ) || !is_dir( $extDir ) ) {
1378  return [];
1379  }
1380 
1381  // extensions -> extension.json, skins -> skin.json
1382  $jsonFile = substr( $directory, 0, strlen( $directory ) - 1 ) . '.json';
1383 
1384  $dh = opendir( $extDir );
1385  $exts = [];
1386  while ( ( $file = readdir( $dh ) ) !== false ) {
1387  if ( !is_dir( "$extDir/$file" ) ) {
1388  continue;
1389  }
1390  if ( file_exists( "$extDir/$file/$jsonFile" ) || file_exists( "$extDir/$file/$file.php" ) ) {
1391  // Extension exists. Now see if there are screenshots
1392  $exts[$file] = [];
1393  if ( is_dir( "$extDir/$file/screenshots" ) ) {
1394  $paths = glob( "$extDir/$file/screenshots/*.png" );
1395  foreach ( $paths as $path ) {
1396  $exts[$file]['screenshots'][] = str_replace( $extDir, "../$directory", $path );
1397  }
1398 
1399  }
1400  }
1401  }
1402  closedir( $dh );
1403  uksort( $exts, 'strnatcasecmp' );
1404 
1405  return $exts;
1406  }
1407 
1416  public function getDefaultSkin( array $skinNames ) {
1417  $defaultSkin = $GLOBALS['wgDefaultSkin'];
1418  if ( !$skinNames || in_array( $defaultSkin, $skinNames ) ) {
1419  return $defaultSkin;
1420  } else {
1421  return $skinNames[0];
1422  }
1423  }
1424 
1430  protected function includeExtensions() {
1431  global $IP;
1432  $exts = $this->getVar( '_Extensions' );
1433  $IP = $this->getVar( 'IP' );
1434 
1444  $wgAutoloadClasses = [];
1445  $queue = [];
1446 
1447  require "$IP/includes/DefaultSettings.php";
1448 
1449  foreach ( $exts as $e ) {
1450  if ( file_exists( "$IP/extensions/$e/extension.json" ) ) {
1451  $queue["$IP/extensions/$e/extension.json"] = 1;
1452  } else {
1453  require_once "$IP/extensions/$e/$e.php";
1454  }
1455  }
1456 
1457  $registry = new ExtensionRegistry();
1458  $data = $registry->readFromQueue( $queue );
1459  $wgAutoloadClasses += $data['autoload'];
1460 
1461  $hooksWeWant = isset( $wgHooks['LoadExtensionSchemaUpdates'] ) ?
1463  $wgHooks['LoadExtensionSchemaUpdates'] : [];
1464 
1465  if ( isset( $data['globals']['wgHooks']['LoadExtensionSchemaUpdates'] ) ) {
1466  $hooksWeWant = array_merge_recursive(
1467  $hooksWeWant,
1468  $data['globals']['wgHooks']['LoadExtensionSchemaUpdates']
1469  );
1470  }
1471  // Unset everyone else's hooks. Lord knows what someone might be doing
1472  // in ParserFirstCallInit (see T29171)
1473  $GLOBALS['wgHooks'] = [ 'LoadExtensionSchemaUpdates' => $hooksWeWant ];
1474 
1475  return Status::newGood();
1476  }
1477 
1490  protected function getInstallSteps( DatabaseInstaller $installer ) {
1491  $coreInstallSteps = [
1492  [ 'name' => 'database', 'callback' => [ $installer, 'setupDatabase' ] ],
1493  [ 'name' => 'tables', 'callback' => [ $installer, 'createTables' ] ],
1494  [ 'name' => 'interwiki', 'callback' => [ $installer, 'populateInterwikiTable' ] ],
1495  [ 'name' => 'stats', 'callback' => [ $this, 'populateSiteStats' ] ],
1496  [ 'name' => 'keys', 'callback' => [ $this, 'generateKeys' ] ],
1497  [ 'name' => 'updates', 'callback' => [ $installer, 'insertUpdateKeys' ] ],
1498  [ 'name' => 'sysop', 'callback' => [ $this, 'createSysop' ] ],
1499  [ 'name' => 'mainpage', 'callback' => [ $this, 'createMainpage' ] ],
1500  ];
1501 
1502  // Build the array of install steps starting from the core install list,
1503  // then adding any callbacks that wanted to attach after a given step
1504  foreach ( $coreInstallSteps as $step ) {
1505  $this->installSteps[] = $step;
1506  if ( isset( $this->extraInstallSteps[$step['name']] ) ) {
1507  $this->installSteps = array_merge(
1508  $this->installSteps,
1509  $this->extraInstallSteps[$step['name']]
1510  );
1511  }
1512  }
1513 
1514  // Prepend any steps that want to be at the beginning
1515  if ( isset( $this->extraInstallSteps['BEGINNING'] ) ) {
1516  $this->installSteps = array_merge(
1517  $this->extraInstallSteps['BEGINNING'],
1518  $this->installSteps
1519  );
1520  }
1521 
1522  // Extensions should always go first, chance to tie into hooks and such
1523  if ( count( $this->getVar( '_Extensions' ) ) ) {
1524  array_unshift( $this->installSteps,
1525  [ 'name' => 'extensions', 'callback' => [ $this, 'includeExtensions' ] ]
1526  );
1527  $this->installSteps[] = [
1528  'name' => 'extension-tables',
1529  'callback' => [ $installer, 'createExtensionTables' ]
1530  ];
1531  }
1532 
1533  return $this->installSteps;
1534  }
1535 
1544  public function performInstallation( $startCB, $endCB ) {
1545  $installResults = [];
1546  $installer = $this->getDBInstaller();
1547  $installer->preInstall();
1548  $steps = $this->getInstallSteps( $installer );
1549  foreach ( $steps as $stepObj ) {
1550  $name = $stepObj['name'];
1551  call_user_func_array( $startCB, [ $name ] );
1552 
1553  // Perform the callback step
1554  $status = call_user_func( $stepObj['callback'], $installer );
1555 
1556  // Output and save the results
1557  call_user_func( $endCB, $name, $status );
1558  $installResults[$name] = $status;
1559 
1560  // If we've hit some sort of fatal, we need to bail.
1561  // Callback already had a chance to do output above.
1562  if ( !$status->isOk() ) {
1563  break;
1564  }
1565  }
1566  if ( $status->isOk() ) {
1567  $this->setVar( '_InstallDone', true );
1568  }
1569 
1570  return $installResults;
1571  }
1572 
1578  public function generateKeys() {
1579  $keys = [ 'wgSecretKey' => 64 ];
1580  if ( strval( $this->getVar( 'wgUpgradeKey' ) ) === '' ) {
1581  $keys['wgUpgradeKey'] = 16;
1582  }
1583 
1584  return $this->doGenerateKeys( $keys );
1585  }
1586 
1594  protected function doGenerateKeys( $keys ) {
1596 
1597  $strong = true;
1598  foreach ( $keys as $name => $length ) {
1599  $secretKey = MWCryptRand::generateHex( $length, true );
1600  if ( !MWCryptRand::wasStrong() ) {
1601  $strong = false;
1602  }
1603 
1604  $this->setVar( $name, $secretKey );
1605  }
1606 
1607  if ( !$strong ) {
1608  $names = array_keys( $keys );
1609  $names = preg_replace( '/^(.*)$/', '\$$1', $names );
1610  global $wgLang;
1611  $status->warning( 'config-insecure-keys', $wgLang->listToText( $names ), count( $names ) );
1612  }
1613 
1614  return $status;
1615  }
1616 
1622  protected function createSysop() {
1623  $name = $this->getVar( '_AdminName' );
1625 
1626  if ( !$user ) {
1627  // We should've validated this earlier anyway!
1628  return Status::newFatal( 'config-admin-error-user', $name );
1629  }
1630 
1631  if ( $user->idForName() == 0 ) {
1632  $user->addToDatabase();
1633 
1634  try {
1635  $user->setPassword( $this->getVar( '_AdminPassword' ) );
1636  } catch ( PasswordError $pwe ) {
1637  return Status::newFatal( 'config-admin-error-password', $name, $pwe->getMessage() );
1638  }
1639 
1640  $user->addGroup( 'sysop' );
1641  $user->addGroup( 'bureaucrat' );
1642  if ( $this->getVar( '_AdminEmail' ) ) {
1643  $user->setEmail( $this->getVar( '_AdminEmail' ) );
1644  }
1645  $user->saveSettings();
1646 
1647  // Update user count
1648  $ssUpdate = new SiteStatsUpdate( 0, 0, 0, 0, 1 );
1649  $ssUpdate->doUpdate();
1650  }
1652 
1653  if ( $this->getVar( '_Subscribe' ) && $this->getVar( '_AdminEmail' ) ) {
1655  }
1656 
1657  return $status;
1658  }
1659 
1664  $params = [
1665  'email' => $this->getVar( '_AdminEmail' ),
1666  'language' => 'en',
1667  'digest' => 0
1668  ];
1669 
1670  // Mailman doesn't support as many languages as we do, so check to make
1671  // sure their selected language is available
1672  $myLang = $this->getVar( '_UserLang' );
1673  if ( in_array( $myLang, $this->mediaWikiAnnounceLanguages ) ) {
1674  $myLang = $myLang == 'pt-br' ? 'pt_BR' : $myLang; // rewrite to Mailman's pt_BR
1675  $params['language'] = $myLang;
1676  }
1677 
1679  $res = MWHttpRequest::factory( $this->mediaWikiAnnounceUrl,
1680  [ 'method' => 'POST', 'postData' => $params ], __METHOD__ )->execute();
1681  if ( !$res->isOK() ) {
1682  $s->warning( 'config-install-subscribe-fail', $res->getMessage() );
1683  }
1684  } else {
1685  $s->warning( 'config-install-subscribe-notpossible' );
1686  }
1687  }
1688 
1695  protected function createMainpage( DatabaseInstaller $installer ) {
1698  if ( $title->exists() ) {
1699  $status->warning( 'config-install-mainpage-exists' );
1700  return $status;
1701  }
1702  try {
1703  $page = WikiPage::factory( $title );
1704  $content = new WikitextContent(
1705  wfMessage( 'mainpagetext' )->inContentLanguage()->text() . "\n\n" .
1706  wfMessage( 'mainpagedocfooter' )->inContentLanguage()->text()
1707  );
1708 
1709  $status = $page->doEditContent( $content,
1710  '',
1711  EDIT_NEW,
1712  false,
1713  User::newFromName( 'MediaWiki default' )
1714  );
1715  } catch ( Exception $e ) {
1716  // using raw, because $wgShowExceptionDetails can not be set yet
1717  $status->fatal( 'config-install-mainpage-failed', $e->getMessage() );
1718  }
1719 
1720  return $status;
1721  }
1722 
1726  public static function overrideConfig() {
1727  // Use PHP's built-in session handling, since MediaWiki's
1728  // SessionHandler can't work before we have an object cache set up.
1729  define( 'MW_NO_SESSION_HANDLER', 1 );
1730 
1731  // Don't access the database
1732  $GLOBALS['wgUseDatabaseMessages'] = false;
1733  // Don't cache langconv tables
1734  $GLOBALS['wgLanguageConverterCacheType'] = CACHE_NONE;
1735  // Debug-friendly
1736  $GLOBALS['wgShowExceptionDetails'] = true;
1737  // Don't break forms
1738  $GLOBALS['wgExternalLinkTarget'] = '_blank';
1739 
1740  // Extended debugging
1741  $GLOBALS['wgShowSQLErrors'] = true;
1742  $GLOBALS['wgShowDBErrorBacktrace'] = true;
1743 
1744  // Allow multiple ob_flush() calls
1745  $GLOBALS['wgDisableOutputCompression'] = true;
1746 
1747  // Use a sensible cookie prefix (not my_wiki)
1748  $GLOBALS['wgCookiePrefix'] = 'mw_installer';
1749 
1750  // Some of the environment checks make shell requests, remove limits
1751  $GLOBALS['wgMaxShellMemory'] = 0;
1752 
1753  // Override the default CookieSessionProvider with a dummy
1754  // implementation that won't stomp on PHP's cookies.
1755  $GLOBALS['wgSessionProviders'] = [
1756  [
1757  'class' => 'InstallerSessionProvider',
1758  'args' => [ [
1759  'priority' => 1,
1760  ] ]
1761  ]
1762  ];
1763 
1764  // Don't try to use any object cache for SessionManager either.
1765  $GLOBALS['wgSessionCacheType'] = CACHE_NONE;
1766  }
1767 
1775  public function addInstallStep( $callback, $findStep = 'BEGINNING' ) {
1776  $this->extraInstallSteps[$findStep][] = $callback;
1777  }
1778 
1783  protected function disableTimeLimit() {
1784  MediaWiki\suppressWarnings();
1785  set_time_limit( 0 );
1786  MediaWiki\restoreWarnings();
1787  }
1788 }
Installer\envCheckBrokenXML
envCheckBrokenXML()
Some versions of libxml+PHP break < and > encoding horribly.
Definition: Installer.php:792
ParserOptions
Set options of the Parser.
Definition: ParserOptions.php:40
$user
please add to it if you re going to add events to the MediaWiki code where normally authentication against an external auth plugin would be creating a account $user
Definition: hooks.txt:244
MWHttpRequest\factory
static factory( $url, $options=null, $caller=__METHOD__)
Generate a new request object.
Definition: MWHttpRequest.php:184
Installer\__construct
__construct()
Constructor, always call this from child classes.
Definition: Installer.php:400
$wgUser
$wgUser
Definition: Setup.php:809
User\newFromId
static newFromId( $id)
Static factory method for creation from a given user ID.
Definition: User.php:573
Title\newFromText
static newFromText( $text, $defaultNamespace=NS_MAIN)
Create a new Title from text, such as what one would find in a link.
Definition: Title.php:268
false
processing should stop and the error should be shown to the user * false
Definition: hooks.txt:187
MWCryptRand\wasStrong
static wasStrong()
Return a boolean indicating whether or not the source used for cryptographic random bytes generation ...
Definition: MWCryptRand.php:44
Installer\createMainpage
createMainpage(DatabaseInstaller $installer)
Insert Main Page with default content.
Definition: Installer.php:1695
Installer\showMessage
showMessage( $msg)
UI interface for displaying a short message The parameters are like parameters to wfMessage().
$wgParser
$wgParser
Definition: Setup.php:824
Installer\parse
parse( $text, $lineStart=false)
Convert wikitext $text to HTML.
Definition: Installer.php:686
MultiConfig
Provides a fallback sequence for Config objects.
Definition: MultiConfig.php:28
$lang
if(!isset( $args[0])) $lang
Definition: testCompression.php:33
HashConfig
A Config instance which stores all settings as a member variable.
Definition: HashConfig.php:28
captcha-old.count
count
Definition: captcha-old.py:249
$wgMemc
globals will be eliminated from MediaWiki replaced by an application object which would be passed to constructors Whether that would be an convenient solution remains to be but certainly PHP makes such object oriented programming models easier than they were in previous versions For the time being MediaWiki programmers will have to work in an environment with some global context At the time of globals were initialised on startup by MediaWiki of these were configuration which are documented in DefaultSettings php There is no comprehensive documentation for the remaining however some of the most important ones are listed below They are typically initialised either in index php or in Setup php For a description of the see design txt $wgTitle Title object created from the request URL $wgOut OutputPage object for HTTP response $wgUser User object for the user associated with the current request $wgLang Language object selected by user preferences $wgContLang Language object associated with the wiki being viewed $wgParser Parser object Parser extensions register their hooks here $wgRequest WebRequest to get request data $wgMemc
Definition: globals.txt:25
Installer\showStatusMessage
showStatusMessage(Status $status)
Show a message to the installing user by using a Status object.
Installer\dirIsExecutable
dirIsExecutable( $dir, $url)
Checks if scripts located in the given directory can be executed via the given URL.
Definition: Installer.php:1284
text
design txt This is a brief overview of the new design More thorough and up to date information is available on the documentation wiki at etc Handles the details of getting and saving to the user table of the and dealing with sessions and cookies OutputPage Encapsulates the entire HTML page that will be sent in response to any server request It is used by calling its functions to add text
Definition: design.txt:12
CACHE_NONE
const CACHE_NONE
Definition: Defines.php:103
Installer\envCheckLibicu
envCheckLibicu()
Check the libicu version.
Definition: Installer.php:1136
Title\newMainPage
static newMainPage()
Create a new Title for the Main Page.
Definition: Title.php:581
ExtensionRegistry
ExtensionRegistry class.
Definition: ExtensionRegistry.php:14
CACHE_MEMCACHED
const CACHE_MEMCACHED
Definition: Defines.php:105
Installer\populateSiteStats
populateSiteStats(DatabaseInstaller $installer)
Install step which adds a row to the site_stats table with appropriate initial values.
Definition: Installer.php:727
Installer\$extraInstallSteps
array $extraInstallSteps
Extra steps for installation, for things like DatabaseInstallers to modify.
Definition: Installer.php:238
DatabaseInstaller\getConnection
getConnection()
Connect to the database using the administrative user/password currently defined in the session.
Definition: DatabaseInstaller.php:179
$status
Status::newGood()` to allow deletion, and then `return false` from the hook function. Ensure you consume the 'ChangeTagAfterDelete' hook to carry out custom deletion actions. $tag:name of the tag $user:user initiating the action & $status:Status object. See above. 'ChangeTagsListActive':Allows you to nominate which of the tags your extension uses are in active use. & $tags:list of all active tags. Append to this array. 'ChangeTagsAfterUpdateTags':Called after tags have been updated with the ChangeTags::updateTags function. Params:$addedTags:tags effectively added in the update $removedTags:tags effectively removed in the update $prevTags:tags that were present prior to the update $rc_id:recentchanges table id $rev_id:revision table id $log_id:logging table id $params:tag params $rc:RecentChange being tagged when the tagging accompanies the action or null $user:User who performed the tagging when the tagging is subsequent to the action or null 'ChangeTagsAllowedAdd':Called when checking if a user can add tags to a change. & $allowedTags:List of all the tags the user is allowed to add. Any tags the user wants to add( $addTags) that are not in this array will cause it to fail. You may add or remove tags to this array as required. $addTags:List of tags user intends to add. $user:User who is adding the tags. 'ChangeUserGroups':Called before user groups are changed. $performer:The User who will perform the change $user:The User whose groups will be changed & $add:The groups that will be added & $remove:The groups that will be removed 'Collation::factory':Called if $wgCategoryCollation is an unknown collation. $collationName:Name of the collation in question & $collationObject:Null. Replace with a subclass of the Collation class that implements the collation given in $collationName. 'ConfirmEmailComplete':Called after a user 's email has been confirmed successfully. $user:user(object) whose email is being confirmed 'ContentAlterParserOutput':Modify parser output for a given content object. Called by Content::getParserOutput after parsing has finished. Can be used for changes that depend on the result of the parsing but have to be done before LinksUpdate is called(such as adding tracking categories based on the rendered HTML). $content:The Content to render $title:Title of the page, as context $parserOutput:ParserOutput to manipulate 'ContentGetParserOutput':Customize parser output for a given content object, called by AbstractContent::getParserOutput. May be used to override the normal model-specific rendering of page content. $content:The Content to render $title:Title of the page, as context $revId:The revision ID, as context $options:ParserOptions for rendering. To avoid confusing the parser cache, the output can only depend on parameters provided to this hook function, not on global state. $generateHtml:boolean, indicating whether full HTML should be generated. If false, generation of HTML may be skipped, but other information should still be present in the ParserOutput object. & $output:ParserOutput, to manipulate or replace 'ContentHandlerDefaultModelFor':Called when the default content model is determined for a given title. May be used to assign a different model for that title. $title:the Title in question & $model:the model name. Use with CONTENT_MODEL_XXX constants. 'ContentHandlerForModelID':Called when a ContentHandler is requested for a given content model name, but no entry for that model exists in $wgContentHandlers. Note:if your extension implements additional models via this hook, please use GetContentModels hook to make them known to core. $modeName:the requested content model name & $handler:set this to a ContentHandler object, if desired. 'ContentModelCanBeUsedOn':Called to determine whether that content model can be used on a given page. This is especially useful to prevent some content models to be used in some special location. $contentModel:ID of the content model in question $title:the Title in question. & $ok:Output parameter, whether it is OK to use $contentModel on $title. Handler functions that modify $ok should generally return false to prevent further hooks from further modifying $ok. 'ContribsPager::getQueryInfo':Before the contributions query is about to run & $pager:Pager object for contributions & $queryInfo:The query for the contribs Pager 'ContribsPager::reallyDoQuery':Called before really executing the query for My Contributions & $data:an array of results of all contribs queries $pager:The ContribsPager object hooked into $offset:Index offset, inclusive $limit:Exact query limit $descending:Query direction, false for ascending, true for descending 'ContributionsLineEnding':Called before a contributions HTML line is finished $page:SpecialPage object for contributions & $ret:the HTML line $row:the DB row for this line & $classes:the classes to add to the surrounding< li > & $attribs:associative array of other HTML attributes for the< li > element. Currently only data attributes reserved to MediaWiki are allowed(see Sanitizer::isReservedDataAttribute). 'ContributionsToolLinks':Change tool links above Special:Contributions $id:User identifier $title:User page title & $tools:Array of tool links $specialPage:SpecialPage instance for context and services. Can be either SpecialContributions or DeletedContributionsPage. Extensions should type hint against a generic SpecialPage though. 'ConvertContent':Called by AbstractContent::convert when a conversion to another content model is requested. Handler functions that modify $result should generally return false to disable further attempts at conversion. $content:The Content object to be converted. $toModel:The ID of the content model to convert to. $lossy:boolean indicating whether lossy conversion is allowed. & $result:Output parameter, in case the handler function wants to provide a converted Content object. Note that $result->getContentModel() must return $toModel. 'CustomEditor':When invoking the page editor Return true to allow the normal editor to be used, or false if implementing a custom editor, e.g. for a special namespace, etc. $article:Article being edited $user:User performing the edit 'DatabaseOraclePostInit':Called after initialising an Oracle database $db:the DatabaseOracle object 'DeletedContribsPager::reallyDoQuery':Called before really executing the query for Special:DeletedContributions Similar to ContribsPager::reallyDoQuery & $data:an array of results of all contribs queries $pager:The DeletedContribsPager object hooked into $offset:Index offset, inclusive $limit:Exact query limit $descending:Query direction, false for ascending, true for descending 'DeletedContributionsLineEnding':Called before a DeletedContributions HTML line is finished. Similar to ContributionsLineEnding $page:SpecialPage object for DeletedContributions & $ret:the HTML line $row:the DB row for this line & $classes:the classes to add to the surrounding< li > & $attribs:associative array of other HTML attributes for the< li > element. Currently only data attributes reserved to MediaWiki are allowed(see Sanitizer::isReservedDataAttribute). 'DifferenceEngineAfterLoadNewText':called in DifferenceEngine::loadNewText() after the new revision 's content has been loaded into the class member variable $differenceEngine->mNewContent but before returning true from this function. $differenceEngine:DifferenceEngine object 'DifferenceEngineLoadTextAfterNewContentIsLoaded':called in DifferenceEngine::loadText() after the new revision 's content has been loaded into the class member variable $differenceEngine->mNewContent but before checking if the variable 's value is null. This hook can be used to inject content into said class member variable. $differenceEngine:DifferenceEngine object 'DifferenceEngineMarkPatrolledLink':Allows extensions to change the "mark as patrolled" link which is shown both on the diff header as well as on the bottom of a page, usually wrapped in a span element which has class="patrollink". $differenceEngine:DifferenceEngine object & $markAsPatrolledLink:The "mark as patrolled" link HTML(string) $rcid:Recent change ID(rc_id) for this change(int) 'DifferenceEngineMarkPatrolledRCID':Allows extensions to possibly change the rcid parameter. For example the rcid might be set to zero due to the user being the same as the performer of the change but an extension might still want to show it under certain conditions. & $rcid:rc_id(int) of the change or 0 $differenceEngine:DifferenceEngine object $change:RecentChange object $user:User object representing the current user 'DifferenceEngineNewHeader':Allows extensions to change the $newHeader variable, which contains information about the new revision, such as the revision 's author, whether the revision was marked as a minor edit or not, etc. $differenceEngine:DifferenceEngine object & $newHeader:The string containing the various #mw-diff-otitle[1-5] divs, which include things like revision author info, revision comment, RevisionDelete link and more $formattedRevisionTools:Array containing revision tools, some of which may have been injected with the DiffRevisionTools hook $nextlink:String containing the link to the next revision(if any) $status
Definition: hooks.txt:1245
Installer\$rightsProfiles
array $rightsProfiles
User rights profiles.
Definition: Installer.php:257
Installer\envCheckShellLocale
envCheckShellLocale()
Environment check for preferred locale in shell.
Definition: Installer.php:989
use
as see the revision history and available at free of to any person obtaining a copy of this software and associated documentation to deal in the Software without including without limitation the rights to use
Definition: MIT-LICENSE.txt:10
Installer\envCheckUploadsDirectory
envCheckUploadsDirectory()
Environment check for the permissions of the uploads directory.
Definition: Installer.php:1067
StatusValue\newFatal
static newFatal( $message)
Factory function for fatal errors.
Definition: StatusValue.php:68
Installer\$settings
array $settings
Definition: Installer.php:56
Installer\envPrepServer
envPrepServer()
Environment prep for the server hostname.
Definition: Installer.php:1172
$params
$params
Definition: styleTest.css.php:40
Installer\performInstallation
performInstallation( $startCB, $endCB)
Actually perform the installation.
Definition: Installer.php:1544
Installer\$mediaWikiAnnounceLanguages
$mediaWikiAnnounceLanguages
Supported language codes for Mailman.
Definition: Installer.php:325
PasswordError
Show an error when any operation involving passwords fails to run.
Definition: PasswordError.php:26
User\newFromName
static newFromName( $name, $validate='valid')
Static factory method for creation from username.
Definition: User.php:550
$s
$s
Definition: mergeMessageFileList.php:188
MWCryptRand\generateHex
static generateHex( $chars, $forceStrong=false)
Generate a run of (ideally) cryptographically random data and return it in hexadecimal string format.
Definition: MWCryptRand.php:76
$res
$res
Definition: database.txt:21
$name
Allows to change the fields on the form that will be generated $name
Definition: hooks.txt:302
Installer\$dbInstallers
array $dbInstallers
Cached DB installer instances, access using getDBInstaller().
Definition: Installer.php:70
Installer\setParserLanguage
setParserLanguage( $lang)
ParserOptions are constructed before we determined the language, so fix it.
Definition: Installer.php:1348
Installer\addInstallStep
addInstallStep( $callback, $findStep='BEGINNING')
Add an installation step following the given step.
Definition: Installer.php:1775
Installer\$internalDefaults
array $internalDefaults
Variables that are stored alongside globals, and are used for any configuration of the installation p...
Definition: Installer.php:194
Installer\setPassword
setPassword( $name, $value)
Set a variable which stores a password, except if the new value is a fake password in which case leav...
Definition: Installer.php:639
Installer\envGetDefaultServer
envGetDefaultServer()
Helper function to be called from envPrepServer()
php
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
Definition: injection.txt:35
Installer\setVar
setVar( $name, $value)
Set a MW configuration variable, or internal installer configuration variable.
Definition: Installer.php:518
Installer\$parserTitle
Title $parserTitle
Cached Title, used by parse().
Definition: Installer.php:84
Installer\$objectCaches
array $objectCaches
Known object cache types and the functions used to test for their existence.
Definition: Installer.php:245
Installer\locateExecutableInDefaultPaths
static locateExecutableInDefaultPaths( $names, $versionInfo=false)
Same as locateExecutable(), but checks in getPossibleBinPaths() by default.
Definition: Installer.php:1265
Installer\$minMemorySize
int $minMemorySize
Minimum memory size in MB.
Definition: Installer.php:77
Status
Generic operation result class Has warning/error list, boolean status and arbitrary value.
Definition: Status.php:40
Installer\overrideConfig
static overrideConfig()
Override the necessary bits of the config to run an installation.
Definition: Installer.php:1726
Installer\createSysop
createSysop()
Create the first user account, grant it sysop and bureaucrat rights.
Definition: Installer.php:1622
Installer\getFakePassword
getFakePassword( $realPassword)
Get a fake password for sending back to the user in HTML.
Definition: Installer.php:628
Installer\envCheckSuhosinMaxValueLength
envCheckSuhosinMaxValueLength()
Checks if suhosin.get.max_value_length is set, and if so generate a warning because it decreases Reso...
Definition: Installer.php:1086
Language\getLocalisationCache
static getLocalisationCache()
Get the LocalisationCache instance.
Definition: Language.php:406
Installer\showError
showError( $msg)
Same as showMessage(), but for displaying errors.
$html
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 & $html
Definition: hooks.txt:1965
Installer\getPossibleBinPaths
static getPossibleBinPaths()
Get an array of likely places we can find executables.
Definition: Installer.php:1201
$title
namespace and then decline to actually register it file or subcat img or subcat $title
Definition: hooks.txt:932
Installer\envPrepPath
envPrepPath()
Environment prep for setting $IP and $wgScriptPath.
Definition: Installer.php:1188
WikiPage\factory
static factory(Title $title)
Create a WikiPage object of the appropriate class for the given title.
Definition: WikiPage.php:121
MediaWiki\MediaWikiServices\resetGlobalInstance
static resetGlobalInstance(Config $bootstrapConfig=null, $quick='')
Creates a new instance of MediaWikiServices and sets it as the global default instance.
Definition: MediaWikiServices.php:175
Installer\envCheckDiff3
envCheckDiff3()
Search for GNU diff3.
Definition: Installer.php:895
Installer\generateKeys
generateKeys()
Generate $wgSecretKey.
Definition: Installer.php:1578
Installer\envCheckMemory
envCheckMemory()
Environment check for available memory.
Definition: Installer.php:833
MediaWiki
A helper class for throttling authentication attempts.
$IP
$IP
Definition: update.php:3
$wgObjectCaches
$wgObjectCaches
Advanced object cache configuration.
Definition: DefaultSettings.php:2294
Installer\getCompiledDBs
getCompiledDBs()
Get a list of DBs supported by current PHP setup.
Definition: Installer.php:545
ObjectCache\getInstance
static getInstance( $id)
Get a cached instance of the specified type of cache object.
Definition: ObjectCache.php:92
$queue
$queue
Definition: mergeMessageFileList.php:161
Installer\envCheckCache
envCheckCache()
Environment check for compiled object cache types.
Definition: Installer.php:859
Installer\getExistingLocalSettings
static getExistingLocalSettings()
Determine if LocalSettings.php exists.
Definition: Installer.php:587
Installer\envCheckPath
envCheckPath()
Environment check to inform user which paths we've assumed.
Definition: Installer.php:976
Installer\doGenerateKeys
doGenerateKeys( $keys)
Generate a secret value for variables using our CryptRand generator.
Definition: Installer.php:1594
$lines
$lines
Definition: router.php:67
$wgLang
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
Definition: design.txt:56
Installer\$parserOptions
ParserOptions $parserOptions
Cached ParserOptions, used by parse().
Definition: Installer.php:91
GlobalVarConfig
Accesses configuration settings from $GLOBALS.
Definition: GlobalVarConfig.php:28
global
when a variable name is used in a it is silently declared as a new masking the global
Definition: design.txt:93
settings
globals will be eliminated from MediaWiki replaced by an application object which would be passed to constructors Whether that would be an convenient solution remains to be but certainly PHP makes such object oriented programming models easier than they were in previous versions For the time being MediaWiki programmers will have to work in an environment with some global context At the time of globals were initialised on startup by MediaWiki of these were configuration settings
Definition: globals.txt:25
$wgExternalLinkTarget
$wgExternalLinkTarget
Set a default target for external links, e.g.
Definition: DefaultSettings.php:4358
SiteStatsUpdate
Class for handling updates to the site_stats table.
Definition: SiteStatsUpdate.php:27
$GLOBALS
$GLOBALS['wgAutoloadClasses']['LocalisationUpdate']
Definition: Autoload.php:10
MediaWiki\MediaWikiServices\disableStorageBackend
static disableStorageBackend()
Disables all storage layer services.
Definition: MediaWikiServices.php:272
Installer\$dbTypes
static array $dbTypes
Known database types.
Definition: Installer.php:102
Installer\getVar
getVar( $name, $default=null)
Get an MW configuration variable, or internal installer configuration variable.
Definition: Installer.php:532
WikitextContent
Content object for wiki text pages.
Definition: WikitextContent.php:33
list
deferred txt A few of the database updates required by various functions here can be deferred until after the result page is displayed to the user For updating the view updating the linked to tables after a etc PHP does not yet have any way to tell the server to actually return and disconnect while still running these but it might have such a feature in the future We handle these by creating a deferred update object and putting those objects on a global list
Definition: deferred.txt:11
Installer\restoreLinkPopups
restoreLinkPopups()
Definition: Installer.php:714
Installer\getDefaultSkin
getDefaultSkin(array $skinNames)
Returns a default value to be used for $wgDefaultSkin: normally the one set in DefaultSettings,...
Definition: Installer.php:1416
$dir
$dir
Definition: Autoload.php:8
Installer\findExtensions
findExtensions( $directory='extensions')
Finds extensions that follow the format /$directory/Name/Name.php, and returns an array containing th...
Definition: Installer.php:1371
Http\get
static get( $url, $options=[], $caller=__METHOD__)
Simple wrapper for Http::request( 'GET' )
Definition: Http.php:98
$command
$command
Definition: cdb.php:64
Installer\getInstallerConfig
static getInstallerConfig(Config $baseConfig)
Constructs a Config object that contains configuration settings that should be overwritten for the in...
Definition: Installer.php:362
$line
$line
Definition: cdb.php:58
$e
div flags Integer display flags(NO_ACTION_LINK, NO_EXTRA_USER_LINKS) 'LogException' returning false will NOT prevent logging $e
Definition: hooks.txt:2141
$value
$value
Definition: styleTest.css.php:45
Installer\$envPreps
array $envPreps
A list of environment preparation methods called by doEnvironmentPreps().
Definition: Installer.php:145
$wgExtensionDirectory
$wgExtensionDirectory
Filesystem extensions directory.
Definition: DefaultSettings.php:239
StatusValue\newGood
static newGood( $value=null)
Factory function for good results.
Definition: StatusValue.php:81
Installer\$installSteps
array $installSteps
The actual list of installation steps.
Definition: Installer.php:231
wfIsWindows
wfIsWindows()
Check if the operating system is Windows.
Definition: GlobalFunctions.php:2079
wfEscapeShellArg
wfEscapeShellArg()
Version of escapeshellarg() that works better on Windows.
Definition: GlobalFunctions.php:2243
Installer\doEnvironmentPreps
doEnvironmentPreps()
Definition: Installer.php:506
CACHE_ANYTHING
const CACHE_ANYTHING
Definition: Defines.php:102
Installer\getDBInstaller
getDBInstaller( $type=false)
Get an instance of DatabaseInstaller for the specified DB type.
Definition: Installer.php:567
DatabaseInstaller
Base class for DBMS-specific installation helper classes.
Definition: DatabaseInstaller.php:33
$ret
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
Definition: hooks.txt:1965
Installer\envCheckDB
envCheckDB()
Environment check for DB types.
Definition: Installer.php:753
Installer\getInstallSteps
getInstallSteps(DatabaseInstaller $installer)
Get an array of install steps.
Definition: Installer.php:1490
RequestContext\getMain
static getMain()
Static methods.
Definition: RequestContext.php:470
$wgAutoloadClasses
$wgAutoloadClasses
Array mapping class names to filenames, for autoloading.
Definition: DefaultSettings.php:7269
Installer\$compiledDBs
array $compiledDBs
List of detected DBs, access using getCompiledDBs().
Definition: Installer.php:63
wfIniGetBool
wfIniGetBool( $setting)
Safety wrapper around ini_get() for boolean settings.
Definition: GlobalFunctions.php:2222
Installer\doEnvironmentChecks
doEnvironmentChecks()
Do initial checks of the PHP environment.
Definition: Installer.php:477
EDIT_NEW
const EDIT_NEW
Definition: Defines.php:153
Installer\envCheckGraphics
envCheckGraphics()
Environment check for ImageMagick and GD.
Definition: Installer.php:915
wfShorthandToInteger
wfShorthandToInteger( $string='', $default=-1)
Converts shorthand byte notation to integer form.
Definition: GlobalFunctions.php:3135
Installer\apacheModulePresent
static apacheModulePresent( $moduleName)
Checks for presence of an Apache module.
Definition: Installer.php:1331
PhpXmlBugTester
Test for PHP+libxml2 bug which breaks XML input subtly with certain versions.
Definition: PhpBugTests.php:30
Title
Represents a title within MediaWiki.
Definition: Title.php:39
Installer\envCheckPCRE
envCheckPCRE()
Environment check for the PCRE module.
Definition: Installer.php:811
$ext
$ext
Definition: NoLocalSettings.php:25
$wgHooks
$wgHooks['ArticleShow'][]
Definition: hooks.txt:108
Installer\getParserOptions
getParserOptions()
Definition: Installer.php:706
MWHttpRequest\canMakeRequests
static canMakeRequests()
Simple function to test if we can make any sort of requests at all, using cURL or fopen()
Definition: MWHttpRequest.php:171
$path
$path
Definition: NoLocalSettings.php:26
Installer\envCheck64Bit
envCheck64Bit()
Checks if we're running on 64 bit or not.
Definition: Installer.php:1102
as
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
Definition: distributors.txt:9
Installer\$licenses
array $licenses
License types.
Definition: Installer.php:282
Installer\disableTimeLimit
disableTimeLimit()
Disable the time limit for execution.
Definition: Installer.php:1783
$keys
$keys
Definition: testCompression.php:65
$source
$source
Definition: mwdoc-filter.php:46
Installer\envCheckServer
envCheckServer()
Environment check to inform user which server we've assumed.
Definition: Installer.php:963
Installer
Base installer class.
Definition: Installer.php:43
Installer\MINIMUM_PCRE_VERSION
const MINIMUM_PCRE_VERSION
The oldest version of PCRE we can support.
Definition: Installer.php:51
Language\factory
static factory( $code)
Get a cached or new language object for a given language code.
Definition: Language.php:183
wfMessage
either a unescaped string or a HtmlArmor object after in associative array form externallinks including delete and has completed for all link tables whether this was an auto creation 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 "&lt
Installer\getDBTypes
static getDBTypes()
Get a list of known DB types.
Definition: Installer.php:460
Installer\disableLinkPopups
disableLinkPopups()
Definition: Installer.php:710
MediaWikiServices
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 MediaWikiServices
Definition: injection.txt:23
Installer\$mediaWikiAnnounceUrl
$mediaWikiAnnounceUrl
URL to mediawiki-announce subscription.
Definition: Installer.php:319
wfIsHHVM
wfIsHHVM()
Check if we are running under HHVM.
Definition: GlobalFunctions.php:2092
Installer\includeExtensions
includeExtensions()
Installs the auto-detected extensions.
Definition: Installer.php:1430
$wgStyleDirectory
$wgStyleDirectory
Filesystem stylesheets directory.
Definition: DefaultSettings.php:246
Installer\envCheckGit
envCheckGit()
Search for git.
Definition: Installer.php:941
Installer\getDocUrl
getDocUrl( $page)
Overridden by WebInstaller to provide lastPage parameters.
Definition: Installer.php:1358
Installer\subscribeToMediaWikiAnnounce
subscribeToMediaWikiAnnounce(Status $s)
Definition: Installer.php:1663
Installer\unicodeChar
unicodeChar( $c)
Convert a hex string representing a Unicode code point to that code point.
Definition: Installer.php:1115
CACHE_DB
const CACHE_DB
Definition: Defines.php:104
array
the array() calling protocol came about after MediaWiki 1.4rc1.
Installer\maybeGetWebserverPrimaryGroup
static maybeGetWebserverPrimaryGroup()
On POSIX systems return the primary group of the webserver we're running under.
Definition: Installer.php:656
Installer\$defaultVarNames
array $defaultVarNames
MediaWiki configuration globals that will eventually be passed through to LocalSettings....
Definition: Installer.php:157
Installer\getDBInstallerClass
static getDBInstallerClass( $type)
Get the DatabaseInstaller class name for this type.
Definition: Installer.php:556
wfShellExec
wfShellExec( $cmd, &$retval=null, $environ=[], $limits=[], $options=[])
Execute a shell command, with time and memory limits mirrored from the PHP configuration if supported...
Definition: GlobalFunctions.php:2283
$out
this hook is for auditing only or null if authentication failed before getting that far or null if we can t even determine that probably a stub it is not rendered in wiki pages or galleries in category pages allow injecting custom HTML after the section Any uses of the hook need to handle escaping see BaseTemplate::getToolbox and BaseTemplate::makeListItem for details on the format of individual items inside of this array or by returning and letting standard HTTP rendering take place modifiable or by returning false and taking over the output $out
Definition: hooks.txt:781
Installer\$envChecks
array $envChecks
A list of environment check methods called by doEnvironmentChecks().
Definition: Installer.php:121
$type
$type
Definition: testCompression.php:48
Installer\envCheckModSecurity
envCheckModSecurity()
Scare user to death if they have mod_security or mod_security2.
Definition: Installer.php:882
Installer\locateExecutable
static locateExecutable( $path, $names, $versionInfo=false)
Search a path for any of the given executable names.
Definition: Installer.php:1226