23 if ( !defined(
'MEDIAWIKI' ) ) {
24 die(
"This file is part of MediaWiki, it is not a valid entry point" );
48 $path =
"$wgExtensionDirectory/$ext/extension.json";
69 foreach ( $exts
as $ext ) {
70 $registry->queue(
"$wgExtensionDirectory/$ext/extension.json" );
85 $path =
"$wgStyleDirectory/$skin/skin.json";
101 $registry->queue(
"$wgStyleDirectory/$skin/skin.json" );
112 return array_udiff( $a, $b,
'wfArrayDiff2_cmp' );
121 if ( is_string( $a ) && is_string( $b ) ) {
122 return strcmp( $a, $b );
123 } elseif ( count( $a ) !== count( $b ) ) {
124 return count( $a ) <=> count( $b );
129 $valueA = current( $a );
130 $valueB = current( $b );
131 $cmp = strcmp( $valueA, $valueB );
152 return array_filter( $arr, $callback, ARRAY_FILTER_USE_BOTH );
165 return array_filter( $arr, $callback, ARRAY_FILTER_USE_KEY );
178 if ( is_null( $changed ) ) {
179 throw new MWException(
'GlobalFunctions::wfAppendToArrayIfNotDefault got null' );
181 if ( $default[$key] !==
$value ) {
212 $params = array_merge( [ $msg->getKey() ], $msg->getParams() );
214 # @todo FIXME: Sometimes get nested arrays for $params, 215 # which leads to E_NOTICEs 216 $spec = implode(
"\t", $params );
217 $out[$spec] = $originalParams;
220 return array_values(
$out );
233 $keys = array_keys( $array );
234 $offsetByKey = array_flip(
$keys );
236 $offset = $offsetByKey[$after];
239 $before = array_slice( $array, 0, $offset + 1,
true );
240 $after = array_slice( $array, $offset + 1, count( $array ) - $offset,
true );
242 $output = $before + $insert + $after;
256 if ( is_object( $objOrArray ) ) {
257 $objOrArray = get_object_vars( $objOrArray );
259 foreach ( $objOrArray
as $key =>
$value ) {
260 if ( $recursive && ( is_object(
$value ) || is_array(
$value ) ) ) {
283 $max = mt_getrandmax() + 1;
284 $rand = number_format( ( mt_rand() * $max + mt_rand() ) / $max / $max, 12,
'.',
'' );
300 for ( $n = 0; $n < $length; $n += 7 ) {
301 $str .= sprintf(
'%07x', mt_rand() & 0xfffffff );
303 return substr( $str, 0, $length );
336 if ( is_null(
$s ) ) {
341 if ( is_null( $needle ) ) {
342 $needle = [
'%3B',
'%40',
'%24',
'%21',
'%2A',
'%28',
'%29',
'%2C',
'%2F',
'%7E' ];
343 if ( !isset( $_SERVER[
'SERVER_SOFTWARE'] ) ||
344 ( strpos( $_SERVER[
'SERVER_SOFTWARE'],
'Microsoft-IIS/7' ) ===
false )
350 $s = urlencode(
$s );
353 [
';',
'@',
'$',
'!',
'*',
'(',
')',
',',
'/',
'~',
':' ],
371 if ( !is_null( $array2 ) ) {
372 $array1 = $array1 + $array2;
376 foreach ( $array1
as $key =>
$value ) {
381 if ( $prefix !==
'' ) {
382 $key = $prefix .
"[$key]";
384 if ( is_array(
$value ) ) {
387 $cgi .= $firstTime ?
'' :
'&';
388 if ( is_array( $v ) ) {
391 $cgi .= urlencode( $key .
"[$k]" ) .
'=' . urlencode( $v );
396 if ( is_object(
$value ) ) {
399 $cgi .= urlencode( $key ) .
'=' . urlencode(
$value );
419 $bits = explode(
'&',
$query );
421 foreach ( $bits
as $bit ) {
425 if ( strpos( $bit,
'=' ) ===
false ) {
432 $key = urldecode( $key );
434 if ( strpos( $key,
'[' ) !==
false ) {
435 $keys = array_reverse( explode(
'[', $key ) );
436 $key = array_pop(
$keys );
439 $k = substr( $k, 0, -1 );
440 $temp = [ $k => $temp ];
442 if ( isset(
$ret[$key] ) ) {
443 $ret[$key] = array_merge(
$ret[$key], $temp );
463 if ( is_array(
$query ) ) {
469 $hashPos = strpos( $url,
'#' );
470 if ( $hashPos !==
false ) {
471 $fragment = substr( $url, $hashPos );
472 $url = substr( $url, 0, $hashPos );
476 if ( strpos( $url,
'?' ) ===
false ) {
484 if ( $fragment !==
false ) {
519 } elseif ( $defaultProto ===
PROTO_INTERNAL && $wgInternalServer !==
false ) {
525 $defaultProto = $wgRequest->getProtocol() .
'://';
531 $serverHasProto = $bits && $bits[
'scheme'] !=
'';
534 if ( $serverHasProto ) {
535 $defaultProto = $bits[
'scheme'] .
'://';
544 $defaultProtoWithoutSlashes = substr( $defaultProto, 0, -2 );
546 if ( substr( $url, 0, 2 ) ==
'//' ) {
547 $url = $defaultProtoWithoutSlashes . $url;
548 } elseif ( substr( $url, 0, 1 ) ==
'/' ) {
551 if ( $serverHasProto ) {
552 $url = $serverUrl . $url;
556 if ( $defaultProto ===
PROTO_HTTPS && $wgHttpsPort != 443 ) {
557 if ( isset( $bits[
'port'] ) ) {
558 throw new Exception(
'A protocol-relative $wgServer may not contain a port number' );
560 $url = $defaultProtoWithoutSlashes . $serverUrl .
':' . $wgHttpsPort . $url;
562 $url = $defaultProtoWithoutSlashes . $serverUrl . $url;
569 if ( $bits && isset( $bits[
'path'] ) ) {
575 } elseif ( substr( $url, 0, 1 ) !=
'/' ) {
576 # URL is a relative path 580 # Expanded URL is not valid. 594 return substr( $url, 0, -1 );
613 if ( isset( $urlParts[
'delimiter'] ) ) {
614 if ( isset( $urlParts[
'scheme'] ) ) {
615 $result .= $urlParts[
'scheme'];
618 $result .= $urlParts[
'delimiter'];
621 if ( isset( $urlParts[
'host'] ) ) {
622 if ( isset( $urlParts[
'user'] ) ) {
624 if ( isset( $urlParts[
'pass'] ) ) {
625 $result .=
':' . $urlParts[
'pass'];
632 if ( isset( $urlParts[
'port'] ) ) {
633 $result .=
':' . $urlParts[
'port'];
637 if ( isset( $urlParts[
'path'] ) ) {
641 if ( isset( $urlParts[
'query'] ) ) {
642 $result .=
'?' . $urlParts[
'query'];
645 if ( isset( $urlParts[
'fragment'] ) ) {
646 $result .=
'#' . $urlParts[
'fragment'];
667 $inputLength = strlen( $urlPath );
669 while ( $inputOffset < $inputLength ) {
670 $prefixLengthOne = substr( $urlPath, $inputOffset, 1 );
671 $prefixLengthTwo = substr( $urlPath, $inputOffset, 2 );
672 $prefixLengthThree = substr( $urlPath, $inputOffset, 3 );
673 $prefixLengthFour = substr( $urlPath, $inputOffset, 4 );
676 if ( $prefixLengthTwo ==
'./' ) {
677 # Step A, remove leading "./" 679 } elseif ( $prefixLengthThree ==
'../' ) {
680 # Step A, remove leading "../" 682 } elseif ( ( $prefixLengthTwo ==
'/.' ) && ( $inputOffset + 2 == $inputLength ) ) {
683 # Step B, replace leading "/.$" with "/" 685 $urlPath[$inputOffset] =
'/';
686 } elseif ( $prefixLengthThree ==
'/./' ) {
687 # Step B, replace leading "/./" with "/" 689 } elseif ( $prefixLengthThree ==
'/..' && ( $inputOffset + 3 == $inputLength ) ) {
690 # Step C, replace leading "/..$" with "/" and 691 # remove last path component in output 693 $urlPath[$inputOffset] =
'/';
695 } elseif ( $prefixLengthFour ==
'/../' ) {
696 # Step C, replace leading "/../" with "/" and 697 # remove last path component in output 700 } elseif ( ( $prefixLengthOne ==
'.' ) && ( $inputOffset + 1 == $inputLength ) ) {
701 # Step D, remove "^.$" 703 } elseif ( ( $prefixLengthTwo ==
'..' ) && ( $inputOffset + 2 == $inputLength ) ) {
704 # Step D, remove "^..$" 707 # Step E, move leading path segment to output 708 if ( $prefixLengthOne ==
'/' ) {
709 $slashPos = strpos( $urlPath,
'/', $inputOffset + 1 );
711 $slashPos = strpos( $urlPath,
'/', $inputOffset );
713 if ( $slashPos ===
false ) {
714 $output .= substr( $urlPath, $inputOffset );
715 $inputOffset = $inputLength;
717 $output .= substr( $urlPath, $inputOffset, $slashPos - $inputOffset );
718 $inputOffset += $slashPos - $inputOffset;
723 $slashPos = strrpos(
$output,
'/' );
724 if ( $slashPos ===
false ) {
746 static $withProtRel =
null, $withoutProtRel =
null;
747 $cachedValue = $includeProtocolRelative ? $withProtRel : $withoutProtRel;
748 if ( !is_null( $cachedValue ) ) {
754 if ( is_array( $wgUrlProtocols ) ) {
756 foreach ( $wgUrlProtocols
as $protocol ) {
758 if ( $includeProtocolRelative || $protocol !==
'//' ) {
759 $protocols[] = preg_quote( $protocol,
'/' );
763 $retval = implode(
'|', $protocols );
773 if ( $includeProtocolRelative ) {
774 $withProtRel = $retval;
776 $withoutProtRel = $retval;
822 $wasRelative = substr( $url, 0, 2 ) ==
'//';
823 if ( $wasRelative ) {
826 Wikimedia\suppressWarnings();
827 $bits = parse_url( $url );
828 Wikimedia\restoreWarnings();
831 if ( !$bits || !isset( $bits[
'scheme'] ) ) {
836 $bits[
'scheme'] = strtolower( $bits[
'scheme'] );
839 if ( in_array( $bits[
'scheme'] .
'://', $wgUrlProtocols ) ) {
840 $bits[
'delimiter'] =
'://';
841 } elseif ( in_array( $bits[
'scheme'] .
':', $wgUrlProtocols ) ) {
842 $bits[
'delimiter'] =
':';
845 if ( isset( $bits[
'path'] ) ) {
846 $bits[
'host'] = $bits[
'path'];
854 if ( !isset( $bits[
'host'] ) ) {
858 if ( isset( $bits[
'path'] ) ) {
860 if ( substr( $bits[
'path'], 0, 1 ) !==
'/' ) {
861 $bits[
'path'] =
'/' . $bits[
'path'];
869 if ( $wasRelative ) {
870 $bits[
'scheme'] =
'';
871 $bits[
'delimiter'] =
'//';
887 return preg_replace_callback(
888 '/((?:%[89A-F][0-9A-F])+)/i',
890 return urldecode( $matches[1] );
916 if ( is_array( $bits ) && isset( $bits[
'host'] ) ) {
917 $host =
'.' . $bits[
'host'];
918 foreach ( (
array)$domains
as $domain ) {
919 $domain =
'.' . $domain;
920 if ( substr( $host, -strlen( $domain ) ) === $domain ) {
956 $text = trim( $text );
958 if ( $wgDebugTimestamps ) {
959 $context[
'seconds_elapsed'] = sprintf(
961 microtime(
true ) - $_SERVER[
'REQUEST_TIME_FLOAT']
965 ( memory_get_usage(
true ) / ( 1024 * 1024 ) )
969 if ( $wgDebugLogPrefix !==
'' ) {
972 $context[
'private'] = ( $dest ===
false || $dest ===
'private' );
974 $logger = LoggerFactory::getInstance(
'wfDebug' );
989 if ( ( isset( $_GET[
'action'] ) && $_GET[
'action'] ==
'raw' )
991 isset( $_SERVER[
'SCRIPT_NAME'] )
992 && substr( $_SERVER[
'SCRIPT_NAME'], -8 ) ==
'load.php' 1008 $mem = memory_get_usage();
1010 $mem = floor( $mem / 1024 ) .
' KiB';
1014 wfDebug(
"Memory usage: $mem\n" );
1045 $text = trim( $text );
1047 $logger = LoggerFactory::getInstance( $logGroup );
1048 $context[
'private'] = ( $dest ===
false || $dest ===
'private' );
1061 $logger = LoggerFactory::getInstance(
'wfLogDBError' );
1062 $logger->error( trim( $text ),
$context );
1077 function wfDeprecated( $function, $version =
false, $component =
false, $callerOffset = 2 ) {
1091 function wfWarn( $msg, $callerOffset = 1, $level = E_USER_NOTICE ) {
1104 function wfLogWarning( $msg, $callerOffset = 1, $level = E_USER_WARNING ) {
1120 $profiler->logData();
1124 MediaWikiServices::getInstance()->getStatsdDataFactory(),
1133 if ( isset( $wgDebugLogGroups[
'profileoutput'] )
1134 && $wgDebugLogGroups[
'profileoutput'] ===
false 1143 $ctx = [
'elapsed' =>
$request->getElapsedTime() ];
1144 if ( !empty( $_SERVER[
'HTTP_X_FORWARDED_FOR'] ) ) {
1145 $ctx[
'forwarded_for'] = $_SERVER[
'HTTP_X_FORWARDED_FOR'];
1147 if ( !empty( $_SERVER[
'HTTP_CLIENT_IP'] ) ) {
1148 $ctx[
'client_ip'] = $_SERVER[
'HTTP_CLIENT_IP'];
1150 if ( !empty( $_SERVER[
'HTTP_FROM'] ) ) {
1151 $ctx[
'from'] = $_SERVER[
'HTTP_FROM'];
1153 if ( isset( $ctx[
'forwarded_for'] ) ||
1154 isset( $ctx[
'client_ip'] ) ||
1155 isset( $ctx[
'from'] ) ) {
1156 $ctx[
'proxy'] = $_SERVER[
'REMOTE_ADDR'];
1163 $ctx[
'anon'] =
$user->isItemLoaded(
'id' ) &&
$user->isAnon();
1168 $ctx[
'url'] = urldecode(
$request->getRequestURL() );
1173 $ctx[
'output'] = $profiler->getOutput();
1175 $log = LoggerFactory::getInstance(
'profileoutput' );
1176 $log->info(
"Elapsed: {elapsed}; URL: <{url}>\n{output}", $ctx );
1187 $stats = MediaWikiServices::getInstance()->getStatsdDataFactory();
1188 $stats->updateCount( $key, $count );
1197 return MediaWikiServices::getInstance()->getReadOnlyMode()
1210 return MediaWikiServices::getInstance()->getReadOnlyMode()
1221 return MediaWikiServices::getInstance()->getConfiguredReadOnlyMode()
1241 # Identify which language to get or create a language object for. 1242 # Using is_object here due to Stub objects. 1243 if ( is_object( $langcode ) ) {
1244 # Great, we already have the object (hopefully)! 1249 if ( $langcode ===
true || $langcode === $wgLanguageCode ) {
1250 # $langcode is the language code of the wikis content language object. 1251 # or it is a boolean and value is true 1252 return MediaWikiServices::getInstance()->getContentLanguage();
1256 if ( $langcode ===
false || $langcode === $wgLang->getCode() ) {
1257 # $langcode is the language code of user language object. 1258 # or it was a boolean and value is false 1263 if ( in_array( $langcode, $validCodes ) ) {
1264 # $langcode corresponds to a valid language. 1268 # $langcode is a string, but not a valid language code; use content language. 1269 wfDebug(
"Invalid language code passed to wfGetLangObj, falling back to content language.\n" );
1270 return MediaWikiServices::getInstance()->getContentLanguage();
1290 $message =
new Message( $key );
1294 $message->params( ...
$params );
1325 # Fix windows line-endings 1326 # Some messages are split with explode("\n", $msg) 1327 $message = str_replace(
"\r",
'', $message );
1331 if ( is_array(
$args[0] ) ) {
1334 $replacementKeys = [];
1335 foreach (
$args as $n => $param ) {
1336 $replacementKeys[
'$' . ( $n + 1 )] = $param;
1338 $message = strtr( $message, $replacementKeys );
1353 if ( is_null( $host ) ) {
1354 # Hostname overriding 1356 if ( $wgOverrideHostname !==
false ) {
1357 # Set static and skip any detection 1362 if ( function_exists(
'posix_uname' ) ) {
1364 $uname = posix_uname();
1368 if ( is_array( $uname ) && isset( $uname[
'nodename'] ) ) {
1369 $host = $uname[
'nodename'];
1370 } elseif ( getenv(
'COMPUTERNAME' ) ) {
1371 # Windows computer name 1372 $host = getenv(
'COMPUTERNAME' );
1374 # This may be a virtual server. 1375 $host = $_SERVER[
'SERVER_NAME'];
1394 $elapsed = ( microtime(
true ) - $_SERVER[
'REQUEST_TIME_FLOAT'] );
1396 $responseTime = round( $elapsed * 1000 );
1397 $reportVars = [
'wgBackendResponseTime' => $responseTime ];
1398 if ( $wgShowHostnames ) {
1415 static $disabled =
null;
1417 if ( is_null( $disabled ) ) {
1418 $disabled = !function_exists(
'debug_backtrace' );
1420 wfDebug(
"debug_backtrace() is disabled\n" );
1428 return array_slice( debug_backtrace( DEBUG_BACKTRACE_PROVIDE_OBJECT, $limit + 1 ), 1 );
1430 return array_slice( debug_backtrace(), 1 );
1445 if ( $raw ===
null ) {
1450 $frameFormat =
"%s line %s calls %s()\n";
1451 $traceFormat =
"%s";
1453 $frameFormat =
"<li>%s line %s calls %s()</li>\n";
1454 $traceFormat =
"<ul>\n%s</ul>\n";
1457 $frames = array_map(
function ( $frame )
use ( $frameFormat ) {
1458 $file = !empty( $frame[
'file'] ) ? basename( $frame[
'file'] ) :
'-';
1459 $line = $frame[
'line'] ??
'-';
1460 $call = $frame[
'function'];
1461 if ( !empty( $frame[
'class'] ) ) {
1462 $call = $frame[
'class'] . $frame[
'type'] . $call;
1464 return sprintf( $frameFormat, $file,
$line, $call );
1467 return sprintf( $traceFormat, implode(
'', $frames ) );
1481 if ( isset( $backtrace[$level] ) ) {
1497 if ( !$limit || $limit > count( $trace ) - 1 ) {
1498 $limit = count( $trace ) - 1;
1500 $trace = array_slice( $trace, -$limit - 1, $limit );
1501 return implode(
'/', array_map(
'wfFormatStackFrame', $trace ) );
1511 if ( !isset( $frame[
'function'] ) ) {
1512 return 'NO_FUNCTION_GIVEN';
1514 return isset( $frame[
'class'] ) && isset( $frame[
'type'] ) ?
1515 $frame[
'class'] . $frame[
'type'] . $frame[
'function'] :
1529 return wfMessage(
'showingresults' )->numParams( $limit, $offset + 1 )->parse();
1545 if ( isset( $_SERVER[
'HTTP_ACCEPT_ENCODING'] ) ) {
1546 # @todo FIXME: We may want to blacklist some broken browsers 1549 '/\bgzip(?:;(q)=([0-9]+(?:\.[0-9]+)))?\b/',
1550 $_SERVER[
'HTTP_ACCEPT_ENCODING'],
1554 if ( isset( $m[2] ) && ( $m[1] ==
'q' ) && ( $m[2] == 0 ) ) {
1558 wfDebug(
"wfClientAcceptsGzip: client accepts gzip.\n" );
1578 static $repl =
null, $repl2 =
null;
1579 if ( $repl ===
null || defined(
'MW_PARSER_TEST' ) || defined(
'MW_PHPUNIT_TEST' ) ) {
1583 '"' =>
'"',
'&' =>
'&',
"'" =>
''',
'<' =>
'<',
1584 '=' =>
'=',
'>' =>
'>',
'[' =>
'[',
']' =>
']',
1585 '{' =>
'{',
'|' =>
'|',
'}' =>
'}',
';' =>
';',
1586 "\n#" =>
"\n#",
"\r#" =>
"\r#",
1587 "\n*" =>
"\n*",
"\r*" =>
"\r*",
1588 "\n:" =>
"\n:",
"\r:" =>
"\r:",
1589 "\n " =>
"\n ",
"\r " =>
"\r ",
1590 "\n\n" =>
"\n ",
"\r\n" =>
" \n",
1591 "\n\r" =>
"\n ",
"\r\r" =>
"\r ",
1592 "\n\t" =>
"\n	",
"\r\t" =>
"\r	",
1593 "\n----" =>
"\n----",
"\r----" =>
"\r----",
1594 '__' =>
'__',
'://' =>
'://',
1597 $magicLinks = array_keys( array_filter( $wgEnableMagicLinks ) );
1599 foreach ( $magicLinks
as $magic ) {
1600 $repl[
"$magic "] =
"$magic ";
1601 $repl[
"$magic\t"] =
"$magic	";
1602 $repl[
"$magic\r"] =
"$magic ";
1603 $repl[
"$magic\n"] =
"$magic ";
1604 $repl[
"$magic\f"] =
"$magic";
1610 foreach ( $wgUrlProtocols
as $prot ) {
1611 if ( substr( $prot, -1 ) ===
':' ) {
1612 $repl2[] = preg_quote( substr( $prot, 0, -1 ),
'/' );
1615 $repl2 = $repl2 ?
'/\b(' . implode(
'|', $repl2 ) .
'):/i' :
'/^(?!)/';
1617 $text = substr( strtr(
"\n$text", $repl ), 1 );
1618 $text = preg_replace( $repl2,
'$1:', $text );
1634 if ( !is_null(
$source ) || $force ) {
1650 $temp = (bool)( $dest & $bit );
1651 if ( !is_null( $state ) ) {
1669 $s = str_replace(
"\n",
"<br />\n", var_export( $var,
true ) .
"\n" );
1670 if ( headers_sent() || !isset( $wgOut ) || !is_object( $wgOut ) ) {
1673 $wgOut->addHTML(
$s );
1689 $wgOut->sendCacheControl();
1693 header(
'Content-type: text/html; charset=utf-8' );
1694 print '<!DOCTYPE html>' .
1695 '<html><head><title>' .
1696 htmlspecialchars( $label ) .
1697 '</title></head><body><h1>' .
1698 htmlspecialchars( $label ) .
1700 nl2br( htmlspecialchars( $desc ) ) .
1701 "</p></body></html>\n";
1722 if ( $resetGzipEncoding ) {
1726 $wgDisableOutputCompression =
true;
1728 while (
$status = ob_get_status() ) {
1729 if ( isset(
$status[
'flags'] ) ) {
1730 $flags = PHP_OUTPUT_HANDLER_CLEANABLE | PHP_OUTPUT_HANDLER_REMOVABLE;
1731 $deleteable = (
$status[
'flags'] & $flags ) === $flags;
1732 } elseif ( isset(
$status[
'del'] ) ) {
1736 $deleteable =
$status[
'type'] !== 0;
1738 if ( !$deleteable ) {
1743 if (
$status[
'name'] ===
'MediaWikiTestCase::wfResetOutputBuffersBarrier' ) {
1747 if ( !ob_end_clean() ) {
1752 if ( $resetGzipEncoding ) {
1753 if (
$status[
'name'] ==
'ob_gzhandler' ) {
1756 header_remove(
'Content-Encoding' );
1788 # No arg means accept anything (per HTTP spec) 1790 return [ $def => 1.0 ];
1795 $parts = explode(
',', $accept );
1797 foreach ( $parts
as $part ) {
1798 # @todo FIXME: Doesn't deal with params like 'text/html; level=1' 1799 $values = explode(
';', trim( $part ) );
1801 if ( count( $values ) == 1 ) {
1802 $prefs[$values[0]] = 1.0;
1803 } elseif ( preg_match(
'/q\s*=\s*(\d*\.\d+)/', $values[1], $match ) ) {
1804 $prefs[$values[0]] = floatval( $match[1] );
1824 if ( array_key_exists(
$type, $avail ) ) {
1827 $mainType = explode(
'/',
$type )[0];
1828 if ( array_key_exists(
"$mainType/*", $avail ) ) {
1829 return "$mainType/*";
1830 } elseif ( array_key_exists(
'*/*', $avail ) ) {
1854 foreach ( array_keys( $sprefs )
as $type ) {
1855 $subType = explode(
'/', $type )[1];
1856 if ( $subType !=
'*' ) {
1859 $combine[
$type] = $sprefs[
$type] * $cprefs[$ckey];
1864 foreach ( array_keys( $cprefs )
as $type ) {
1865 $subType = explode(
'/', $type )[1];
1866 if ( $subType !=
'*' && !array_key_exists( $type, $sprefs ) ) {
1869 $combine[
$type] = $sprefs[$skey] * $cprefs[
$type];
1877 foreach ( array_keys( $combine )
as $type ) {
1878 if ( $combine[$type] > $bestq ) {
1880 $bestq = $combine[
$type];
1894 Wikimedia\suppressWarnings( $end );
1902 Wikimedia\restoreWarnings();
1914 $ret = MWTimestamp::convert( $outputtype, $ts );
1915 if (
$ret ===
false ) {
1916 wfDebug(
"wfTimestamp() fed bogus time value: TYPE=$outputtype; VALUE=$ts\n" );
1930 if ( is_null( $ts ) ) {
1944 return MWTimestamp::now( TS_MW );
1953 static $isWindows =
null;
1954 if ( $isWindows ===
null ) {
1955 $isWindows = strtoupper( substr( PHP_OS, 0, 3 ) ) ===
'WIN';
1966 return defined(
'HHVM_VERSION' );
1976 return PHP_SAPI ===
'cli' || PHP_SAPI ===
'phpdbg';
1993 if ( $wgTmpDirectory !==
false ) {
2013 throw new MWException( __FUNCTION__ .
" given storage path '$dir'." );
2016 if ( !is_null( $caller ) ) {
2017 wfDebug(
"$caller: called wfMkdirParents($dir)\n" );
2020 if ( strval( $dir ) ===
'' || is_dir( $dir ) ) {
2024 $dir = str_replace( [
'\\',
'/' ], DIRECTORY_SEPARATOR, $dir );
2026 if ( is_null( $mode ) ) {
2031 Wikimedia\suppressWarnings();
2032 $ok = mkdir( $dir, $mode,
true );
2033 Wikimedia\restoreWarnings();
2037 if ( is_dir( $dir ) ) {
2042 wfLogWarning( sprintf(
"failed to mkdir \"%s\" mode 0%o", $dir, $mode ) );
2053 wfDebug( __FUNCTION__ .
"( $dir )\n" );
2055 if ( is_dir( $dir ) ) {
2056 $objects = scandir( $dir );
2057 foreach ( $objects
as $object ) {
2058 if ( $object !=
"." && $object !=
".." ) {
2059 if ( filetype( $dir .
'/' . $object ) ==
"dir" ) {
2062 unlink( $dir .
'/' . $object );
2078 $ret = sprintf(
"%.${acc}f", $nr );
2079 return $round ? round(
$ret, $acc ) .
'%' :
"$ret%";
2122 $val = strtolower( $val );
2127 || preg_match(
"/^\s*[+-]?0*[1-9]/", $val );
2143 return Shell::escape( ...
$args );
2172 if ( Shell::isDisabled() ) {
2175 return 'Unable to run external programs, proc_open() is disabled.';
2178 if ( is_array( $cmd ) ) {
2179 $cmd = Shell::escape( $cmd );
2182 $includeStderr = isset(
$options[
'duplicateStderr'] ) &&
$options[
'duplicateStderr'];
2186 $result = Shell::command( [] )
2187 ->unsafeParams( (
array)$cmd )
2188 ->environment( $environ )
2190 ->includeStderr( $includeStderr )
2191 ->profileMethod( $profileMethod )
2193 ->restrict( Shell::RESTRICT_NONE )
2200 $retval =
$result->getExitCode();
2223 return wfShellExec( $cmd, $retval, $environ, $limits,
2224 [
'duplicateStderr' =>
true,
'profileMethod' =>
wfGetCaller() ] );
2247 if ( isset(
$options[
'wrapper'] ) ) {
2252 return Shell::escape( array_merge( $cmd, $parameters ) );
2269 # This check may also protect against code injection in 2270 # case of broken installations. 2271 Wikimedia\suppressWarnings();
2272 $haveDiff3 = $wgDiff3 && file_exists( $wgDiff3 );
2273 Wikimedia\restoreWarnings();
2275 if ( !$haveDiff3 ) {
2276 wfDebug(
"diff3 not found\n" );
2280 # Make temporary files 2282 $oldtextFile = fopen( $oldtextName = tempnam( $td,
'merge-old-' ),
'w' );
2283 $mytextFile = fopen( $mytextName = tempnam( $td,
'merge-mine-' ),
'w' );
2284 $yourtextFile = fopen( $yourtextName = tempnam( $td,
'merge-your-' ),
'w' );
2286 # NOTE: diff3 issues a warning to stderr if any of the files does not end with 2287 # a newline character. To avoid this, we normalize the trailing whitespace before 2288 # creating the diff. 2290 fwrite( $oldtextFile, rtrim( $old ) .
"\n" );
2291 fclose( $oldtextFile );
2292 fwrite( $mytextFile, rtrim( $mine ) .
"\n" );
2293 fclose( $mytextFile );
2294 fwrite( $yourtextFile, rtrim( $yours ) .
"\n" );
2295 fclose( $yourtextFile );
2297 # Check for a conflict 2298 $cmd = Shell::escape( $wgDiff3,
'-a',
'--overlap-only', $mytextName,
2299 $oldtextName, $yourtextName );
2300 $handle = popen( $cmd,
'r' );
2302 $mergeAttemptResult =
'';
2304 $data = fread( $handle, 8192 );
2305 if ( strlen( $data ) == 0 ) {
2308 $mergeAttemptResult .= $data;
2312 $conflict = $mergeAttemptResult !==
'';
2315 $cmd = Shell::escape( $wgDiff3,
'-a',
'-e',
'--merge', $mytextName,
2316 $oldtextName, $yourtextName );
2317 $handle = popen( $cmd,
'r' );
2320 $data = fread( $handle, 8192 );
2321 if ( strlen( $data ) == 0 ) {
2327 unlink( $mytextName );
2328 unlink( $oldtextName );
2329 unlink( $yourtextName );
2331 if (
$result ===
'' && $old !==
'' && !$conflict ) {
2332 wfDebug(
"Unexpected null result from diff3. Command: $cmd\n" );
2350 if ( $before == $after ) {
2355 Wikimedia\suppressWarnings();
2356 $haveDiff = $wgDiff && file_exists( $wgDiff );
2357 Wikimedia\restoreWarnings();
2359 # This check may also protect against code injection in 2360 # case of broken installations. 2362 wfDebug(
"diff executable not found\n" );
2363 $diffs =
new Diff( explode(
"\n", $before ), explode(
"\n", $after ) );
2365 return $format->format( $diffs );
2368 # Make temporary files 2370 $oldtextFile = fopen( $oldtextName = tempnam( $td,
'merge-old-' ),
'w' );
2371 $newtextFile = fopen( $newtextName = tempnam( $td,
'merge-your-' ),
'w' );
2373 fwrite( $oldtextFile, $before );
2374 fclose( $oldtextFile );
2375 fwrite( $newtextFile, $after );
2376 fclose( $newtextFile );
2379 $cmd =
"$wgDiff " .
$params .
' ' . Shell::escape( $oldtextName, $newtextName );
2381 $h = popen( $cmd,
'r' );
2383 unlink( $oldtextName );
2384 unlink( $newtextName );
2385 throw new Exception( __METHOD__ .
'(): popen() failed' );
2391 $data = fread( $h, 8192 );
2392 if ( strlen( $data ) == 0 ) {
2400 unlink( $oldtextName );
2401 unlink( $newtextName );
2404 $diff_lines = explode(
"\n", $diff );
2405 if ( isset( $diff_lines[0] ) && strpos( $diff_lines[0],
'---' ) === 0 ) {
2406 unset( $diff_lines[0] );
2408 if ( isset( $diff_lines[1] ) && strpos( $diff_lines[1],
'+++' ) === 0 ) {
2409 unset( $diff_lines[1] );
2412 $diff = implode(
"\n", $diff_lines );
2430 if ( $suffix ==
'' ) {
2433 $encSuffix =
'(?:' . preg_quote( $suffix,
'#' ) .
')?';
2437 if ( preg_match(
"#([^/\\\\]*?){$encSuffix}[/\\\\]*$#",
$path,
$matches ) ) {
2455 $path = str_replace(
'/', DIRECTORY_SEPARATOR,
$path );
2456 $from = str_replace(
'/', DIRECTORY_SEPARATOR, $from );
2460 $from = rtrim( $from, DIRECTORY_SEPARATOR );
2462 $pieces = explode( DIRECTORY_SEPARATOR, dirname(
$path ) );
2463 $against = explode( DIRECTORY_SEPARATOR, $from );
2465 if ( $pieces[0] !== $against[0] ) {
2472 while ( count( $pieces ) && count( $against )
2473 && $pieces[0] == $against[0] ) {
2474 array_shift( $pieces );
2475 array_shift( $against );
2479 while ( count( $against ) ) {
2480 array_unshift( $pieces,
'..' );
2481 array_shift( $against );
2486 return implode( DIRECTORY_SEPARATOR, $pieces );
2497 $session = SessionManager::getGlobalSession();
2498 $delay = $session->delaySave();
2500 $session->resetId();
2504 if ( session_id() !== $session->getId() ) {
2508 ScopedCallback::consume( $delay );
2524 session_id( $sessionId );
2527 $session = SessionManager::getGlobalSession();
2528 $session->persist();
2530 if ( session_id() !== $session->getId() ) {
2531 session_id( $session->getId() );
2533 Wikimedia\quietCall(
'session_start' );
2545 $file =
"$IP/serialized/$name";
2546 if ( file_exists( $file ) ) {
2547 $blob = file_get_contents( $file );
2577 $keyspace = $prefix ?
"$db-$prefix" : $db;
2605 if ( $wgDBprefix ) {
2606 return "$wgDBname-$wgDBprefix";
2621 $bits = explode(
'-', $wiki, 2 );
2622 if ( count( $bits ) < 2 ) {
2653 function wfGetDB( $db, $groups = [], $wiki =
false ) {
2654 return wfGetLB( $wiki )->getConnection( $db, $groups, $wiki );
2667 if ( $wiki ===
false ) {
2668 return MediaWikiServices::getInstance()->getDBLoadBalancer();
2670 $factory = MediaWikiServices::getInstance()->getDBLoadBalancerFactory();
2671 return $factory->getMainLB( $wiki );
2683 return MediaWikiServices::getInstance()->getDBLoadBalancerFactory();
2733 if ( $script ===
'index' ) {
2735 } elseif ( $script ===
'load' ) {
2738 return "{$wgScriptPath}/{$script}.php";
2748 if ( isset( $_SERVER[
'SCRIPT_NAME'] ) ) {
2759 return $_SERVER[
'SCRIPT_NAME'];
2761 return $_SERVER[
'URL'];
2773 return $value ?
'true' :
'false';
2808 $ifWritesSince =
null, $wiki =
false, $cluster =
false, $timeout =
null 2810 $lbFactory = MediaWikiServices::getInstance()->getDBLoadBalancerFactory();
2812 if ( $cluster ===
'*' ) {
2815 } elseif ( $wiki ===
false ) {
2816 $domain = $lbFactory->getLocalDomainID();
2822 'domain' => $domain,
2823 'cluster' => $cluster,
2825 'ifWritesSince' => ( $ifWritesSince > 1e9 ) ? $ifWritesSince :
null 2827 if ( $timeout !==
null ) {
2828 $opts[
'timeout'] = $timeout;
2831 return $lbFactory->waitForReplication( $opts );
2845 for ( $i = $seconds; $i >= 0; $i-- ) {
2846 if ( $i != $seconds ) {
2847 echo str_repeat(
"\x08", strlen( $i + 1 ) );
2868 $illegalFileChars = $wgIllegalFileChars ?
"|[" . $wgIllegalFileChars .
"]" :
'';
2869 $name = preg_replace(
2887 if ( $memlimit != -1 ) {
2889 if ( $conflimit == -1 ) {
2890 wfDebug(
"Removing PHP's memory limit\n" );
2891 Wikimedia\suppressWarnings();
2892 ini_set(
'memory_limit', $conflimit );
2893 Wikimedia\restoreWarnings();
2895 } elseif ( $conflimit > $memlimit ) {
2896 wfDebug(
"Raising PHP's memory limit to $conflimit bytes\n" );
2897 Wikimedia\suppressWarnings();
2898 ini_set(
'memory_limit', $conflimit );
2899 Wikimedia\restoreWarnings();
2915 $timeLimit = ini_get(
'max_execution_time' );
2917 if ( $timeLimit > 0 && $wgTransactionalTimeLimit > $timeLimit ) {
2918 set_time_limit( $wgTransactionalTimeLimit );
2921 ignore_user_abort(
true );
2934 $string = trim( $string );
2935 if ( $string ===
'' ) {
2938 $last = $string[strlen( $string ) - 1];
2939 $val = intval( $string );
3018 if ( $length !==
false ) {
3019 $realLen = strlen( $data );
3020 if ( $realLen < $length ) {
3021 throw new MWException(
"Tried to use wfUnpack on a " 3022 .
"string of length $realLen, but needed one " 3023 .
"of at least length $length." 3028 Wikimedia\suppressWarnings();
3029 $result = unpack( $format, $data );
3030 Wikimedia\restoreWarnings();
3034 throw new MWException(
"unpack could not unpack binary data" );
3054 # Handle redirects; callers almost always hit wfFindFile() anyway, 3055 # so just use that method because it has a fast process cache. 3057 $name = $file ? $file->getTitle()->getDBkey() :
$name;
3059 # Run the extension hook 3067 'bad-image-list', ( $blacklist ===
null ) ?
'default' : md5( $blacklist )
3069 $badImages =
$cache->get( $key );
3071 if ( $badImages ===
false ) {
3072 if ( $blacklist ===
null ) {
3073 $blacklist =
wfMessage(
'bad_image_list' )->inContentLanguage()->plain();
3075 # Build the list now 3077 $lines = explode(
"\n", $blacklist );
3080 if ( substr( $line, 0, 1 ) !==
'*' ) {
3086 if ( !preg_match_all(
'/\[\[:?(.*?)\]\]/', $line, $m ) ) {
3091 $imageDBkey =
false;
3092 foreach ( $m[1]
as $i => $titleText ) {
3094 if ( !is_null(
$title ) ) {
3096 $imageDBkey =
$title->getDBkey();
3098 $exceptions[
$title->getPrefixedDBkey()] =
true;
3103 if ( $imageDBkey !==
false ) {
3104 $badImages[$imageDBkey] = $exceptions;
3107 $cache->set( $key, $badImages, 60 );
3110 $contextKey = $contextTitle ? $contextTitle->getPrefixedDBkey() :
false;
3111 $bad = isset( $badImages[
$name] ) && !isset( $badImages[$name][$contextKey] );
3125 Hooks::run(
'CanIPUseHTTPS', [ $ip, &$canDo ] );
3126 return (
bool)$canDo;
3138 $infinityValues = [
'infinite',
'indefinite',
'infinity',
'never' ];
3139 return in_array( $str, $infinityValues );
3159 $multipliers = [ 1 ];
3160 if ( $wgResponsiveImages ) {
3163 $multipliers[] = 1.5;
3168 if ( !
$handler || !isset( $params[
'width'] ) ) {
3173 if ( isset( $params[
'page'] ) ) {
3174 $basicParams[
'page'] = $params[
'page'];
3180 foreach ( $multipliers
as $multiplier ) {
3181 $thumbLimits = array_merge( $thumbLimits, array_map(
3182 function ( $width )
use ( $multiplier ) {
3183 return round( $width * $multiplier );
3186 $imageLimits = array_merge( $imageLimits, array_map(
3187 function ( $pair )
use ( $multiplier ) {
3189 round( $pair[0] * $multiplier ),
3190 round( $pair[1] * $multiplier ),
3197 if ( in_array( $params[
'width'], $thumbLimits ) ) {
3198 $normalParams = $basicParams + [
'width' => $params[
'width'] ];
3200 $handler->normaliseParams( $file, $normalParams );
3204 foreach ( $imageLimits
as $pair ) {
3205 $normalParams = $basicParams + [
'width' => $pair[0],
'height' => $pair[1] ];
3208 $handler->normaliseParams( $file, $normalParams );
3210 if ( $normalParams[
'width'] == $params[
'width'] ) {
3221 foreach ( $params
as $key =>
$value ) {
3222 if ( !isset( $normalParams[$key] ) || $normalParams[$key] !=
$value ) {
3244 foreach ( $baseArray
as $name => &$groupVal ) {
3245 if ( isset( $newValues[
$name] ) ) {
3246 $groupVal += $newValues[
$name];
3250 $baseArray += $newValues;
3264 if ( !function_exists(
'getrusage' ) ) {
3266 } elseif ( defined(
'HHVM_VERSION' ) && PHP_OS ===
'Linux' ) {
3267 return getrusage( 2 );
3269 return getrusage( 0 );
The wiki should then use memcached to cache various data To use multiple just add more items to the array To increase the weight of a make its entry a array("192.168.0.1:11211", 2))
wfSuppressWarnings( $end=false)
Reference-counted warning suppression.
mimeTypeMatch( $type, $avail)
Checks if a given MIME type matches any of the keys in the given array.
wfUrlProtocols( $includeProtocolRelative=true)
Returns a regular expression of url protocols.
wfBaseName( $path, $suffix='')
Return the final portion of a pathname.
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
wfEscapeWikiText( $text)
Escapes the given text so that it may be output using addWikiText() without any linking, formatting, etc.
$wgDebugTimestamps
Prefix debug messages with relative timestamp.
wfWarn( $msg, $callerOffset=1, $level=E_USER_NOTICE)
Send a warning either to the debug log or in a PHP error depending on $wgDevelopmentWarnings.
static fetchLanguageNames( $inLanguage=self::AS_AUTONYMS, $include='mw')
Get an array of language names, indexed by code.
null for the local wiki Added should default to null in handler for backwards compatibility add a value to it if you want to add a cookie that have to vary cache options can modify $query
$wgScript
The URL path to index.php.
wfIsHHVM()
Check if we are running under HHVM.
wfMakeUrlIndexes( $url)
Make URL indexes, appropriate for the el_index field of externallinks.
processing should stop and the error should be shown to the user * false
$wgDebugLogGroups
Map of string log group names to log destinations.
wfLoadSkin( $skin, $path=null)
Load a skin.
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
Apache License January AND DISTRIBUTION Definitions License shall mean the terms and conditions for use
wfShellWikiCmd( $script, array $parameters=[], array $options=[])
Generate a shell-escaped command line string to run a MediaWiki cli script.
wfGetRusage()
Get system resource usage of current request context.
wfIsBadImage( $name, $contextTitle=false, $blacklist=null)
Determine if an image exists on the 'bad image list'.
static instance()
Singleton.
wfExpandUrl( $url, $defaultProto=PROTO_CURRENT)
Expand a potentially local URL to a fully-qualified URL.
wfGetCache( $cacheType)
Get a specific cache object.
wfGetPrecompiledData( $name)
Get an object from the precompiled serialized directory.
$wgInternalServer
Internal server name as known to CDN, if different.
wfHostname()
Fetch server name for use in error reporting etc.
wfRecursiveRemoveDir( $dir)
Remove a directory and all its content.
wfParseUrl( $url)
parse_url() work-alike, but non-broken.
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. 'ContentSecurityPolicyDefaultSource':Modify the allowed CSP load sources. This affects all directives except for the script directive. If you want to add a script source, see ContentSecurityPolicyScriptSource hook. & $defaultSrc:Array of Content-Security-Policy allowed sources $policyConfig:Current configuration for the Content-Security-Policy header $mode:ContentSecurityPolicy::REPORT_ONLY_MODE or ContentSecurityPolicy::FULL_MODE depending on type of header 'ContentSecurityPolicyDirectives':Modify the content security policy directives. Use this only if ContentSecurityPolicyDefaultSource and ContentSecurityPolicyScriptSource do not meet your needs. & $directives:Array of CSP directives $policyConfig:Current configuration for the CSP header $mode:ContentSecurityPolicy::REPORT_ONLY_MODE or ContentSecurityPolicy::FULL_MODE depending on type of header 'ContentSecurityPolicyScriptSource':Modify the allowed CSP script sources. Note that you also have to use ContentSecurityPolicyDefaultSource if you want non-script sources to be loaded from whatever you add. & $scriptSrc:Array of CSP directives $policyConfig:Current configuration for the CSP header $mode:ContentSecurityPolicy::REPORT_ONLY_MODE or ContentSecurityPolicy::FULL_MODE depending on type of header '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). 'DeleteUnknownPreferences':Called by the cleanupPreferences.php maintenance script to build a WHERE clause with which to delete preferences that are not known about. This hook is used by extensions that have dynamically-named preferences that should not be deleted in the usual cleanup process. For example, the Gadgets extension creates preferences prefixed with 'gadget-', and so anything with that prefix is excluded from the deletion. &where:An array that will be passed as the $cond parameter to IDatabase::select() to determine what will be deleted from the user_properties table. $db:The IDatabase object, useful for accessing $db->buildLike() etc. '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
wfGetDB( $db, $groups=[], $wiki=false)
Get a Database object.
$wgHttpsPort
For installations where the canonical server is HTTP but HTTPS is optionally supported, you can specify a non-standard HTTPS port here.
$wgOverrideHostname
Override server hostname detection with a hardcoded value.
wfMerge( $old, $mine, $yours, &$result, &$mergeAttemptResult=null)
wfMerge attempts to merge differences between three texts.
wfForeignMemcKey( $db, $prefix,... $args)
Make a cache key for a foreign DB.
wfIsInfinity( $str)
Determine input string is represents as infinity.
wfStripIllegalFilenameChars( $name)
Replace all invalid characters with '-'.
static getInstance( $id)
Get a cached instance of the specified type of cache object.
Stub profiler that does nothing.
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 use $formDescriptor instead 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 key
static getLocalClusterInstance()
Get the main cluster-local cache object.
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
wfUrlProtocolsWithoutProtRel()
Like wfUrlProtocols(), but excludes '//' from the protocol list.
$wgUrlProtocols
URL schemes that should be recognized as valid by wfParseUrl().
$wgDisableOutputCompression
Disable output compression (enabled by default if zlib is available)
wfLogWarning( $msg, $callerOffset=1, $level=E_USER_WARNING)
Send a warning as a PHP error and the debug log.
wfTimestampOrNull( $outputtype=TS_UNIX, $ts=null)
Return a formatted timestamp, or null if input is null.
wfResetOutputBuffers( $resetGzipEncoding=true)
Clear away any user-level output buffers, discarding contents.
$wgTmpDirectory
The local filesystem path to a temporary directory.
wfGetServerUrl( $proto)
Get the wiki's "server", i.e.
static isStoragePath( $path)
Check if a given path is a "mwstore://" path.
wfIsWindows()
Check if the operating system is Windows.
wfLocalFile( $title)
Get an object referring to a locally registered file.
wfGetMessageCacheStorage()
Get the cache object used by the message cache.
wfPercent( $nr, $acc=2, $round=true)
wfSetupSession( $sessionId=false)
Initialise php session.
wfLogDBError( $text, array $context=[])
Log for database errors.
wfGetLangObj( $langcode=false)
Return a Language object from $langcode.
static configuration should be added through ResourceLoaderGetConfigVars instead can be used to get the real title e g db for database replication lag or jobqueue for job queue size converted to pseudo seconds It is possible to add more fields and they will be returned to the user in the API response after the basic globals have been set but before ordinary actions take place $output
wfVarDump( $var)
A wrapper around the PHP function var_export().
The index of the header message $result[1]=The index of the body text message $result[2 through n]=Parameters passed to body text message. Please note the header message cannot receive/use parameters. 'ImportHandleLogItemXMLTag':When parsing a XML tag in a log item. Return false to stop further processing of the tag $reader:XMLReader object $logInfo:Array of information 'ImportHandlePageXMLTag':When parsing a XML tag in a page. Return false to stop further processing of the tag $reader:XMLReader object & $pageInfo:Array of information 'ImportHandleRevisionXMLTag':When parsing a XML tag in a page revision. Return false to stop further processing of the tag $reader:XMLReader object $pageInfo:Array of page information $revisionInfo:Array of revision information 'ImportHandleToplevelXMLTag':When parsing a top level XML tag. Return false to stop further processing of the tag $reader:XMLReader object 'ImportHandleUnknownUser':When a user doesn 't exist locally, this hook is called to give extensions an opportunity to auto-create it. If the auto-creation is successful, return false. $name:User name 'ImportHandleUploadXMLTag':When parsing a XML tag in a file upload. Return false to stop further processing of the tag $reader:XMLReader object $revisionInfo:Array of information 'ImportLogInterwikiLink':Hook to change the interwiki link used in log entries and edit summaries for transwiki imports. & $fullInterwikiPrefix:Interwiki prefix, may contain colons. & $pageTitle:String that contains page title. 'ImportSources':Called when reading from the $wgImportSources configuration variable. Can be used to lazy-load the import sources list. & $importSources:The value of $wgImportSources. Modify as necessary. See the comment in DefaultSettings.php for the detail of how to structure this array. 'InfoAction':When building information to display on the action=info page. $context:IContextSource object & $pageInfo:Array of information 'InitializeArticleMaybeRedirect':MediaWiki check to see if title is a redirect. & $title:Title object for the current page & $request:WebRequest & $ignoreRedirect:boolean to skip redirect check & $target:Title/string of redirect target & $article:Article object 'InternalParseBeforeLinks':during Parser 's internalParse method before links but after nowiki/noinclude/includeonly/onlyinclude and other processings. & $parser:Parser object & $text:string containing partially parsed text & $stripState:Parser 's internal StripState object 'InternalParseBeforeSanitize':during Parser 's internalParse method just before the parser removes unwanted/dangerous HTML tags and after nowiki/noinclude/includeonly/onlyinclude and other processings. Ideal for syntax-extensions after template/parser function execution which respect nowiki and HTML-comments. & $parser:Parser object & $text:string containing partially parsed text & $stripState:Parser 's internal StripState object 'InterwikiLoadPrefix':When resolving if a given prefix is an interwiki or not. Return true without providing an interwiki to continue interwiki search. $prefix:interwiki prefix we are looking for. & $iwData:output array describing the interwiki with keys iw_url, iw_local, iw_trans and optionally iw_api and iw_wikiid. 'InvalidateEmailComplete':Called after a user 's email has been invalidated successfully. $user:user(object) whose email is being invalidated 'IRCLineURL':When constructing the URL to use in an IRC notification. Callee may modify $url and $query, URL will be constructed as $url . $query & $url:URL to index.php & $query:Query string $rc:RecentChange object that triggered url generation 'IsFileCacheable':Override the result of Article::isFileCacheable()(if true) & $article:article(object) being checked 'IsTrustedProxy':Override the result of IP::isTrustedProxy() & $ip:IP being check & $result:Change this value to override the result of IP::isTrustedProxy() 'IsUploadAllowedFromUrl':Override the result of UploadFromUrl::isAllowedUrl() $url:URL used to upload from & $allowed:Boolean indicating if uploading is allowed for given URL 'isValidEmailAddr':Override the result of Sanitizer::validateEmail(), for instance to return false if the domain name doesn 't match your organization. $addr:The e-mail address entered by the user & $result:Set this and return false to override the internal checks 'isValidPassword':Override the result of User::isValidPassword() $password:The password entered by the user & $result:Set this and return false to override the internal checks $user:User the password is being validated for 'Language::getMessagesFileName':$code:The language code or the language we 're looking for a messages file for & $file:The messages file path, you can override this to change the location. 'LanguageGetNamespaces':Provide custom ordering for namespaces or remove namespaces. Do not use this hook to add namespaces. Use CanonicalNamespaces for that. & $namespaces:Array of namespaces indexed by their numbers 'LanguageGetTranslatedLanguageNames':Provide translated language names. & $names:array of language code=> language name $code:language of the preferred translations 'LanguageLinks':Manipulate a page 's language links. This is called in various places to allow extensions to define the effective language links for a page. $title:The page 's Title. & $links:Array with elements of the form "language:title" in the order that they will be output. & $linkFlags:Associative array mapping prefixed links to arrays of flags. Currently unused, but planned to provide support for marking individual language links in the UI, e.g. for featured articles. 'LanguageSelector':Hook to change the language selector available on a page. $out:The output page. $cssClassName:CSS class name of the language selector. 'LinkBegin':DEPRECATED since 1.28! Use HtmlPageLinkRendererBegin instead. Used when generating internal and interwiki links in Linker::link(), before processing starts. Return false to skip default processing and return $ret. See documentation for Linker::link() for details on the expected meanings of parameters. $skin:the Skin object $target:the Title that the link is pointing to & $html:the contents that the< a > tag should have(raw HTML) $result
wfCountDown( $seconds)
Count down from $seconds to zero on the terminal, with a one-second pause between showing each number...
$wgEnableMagicLinks
Enable the magic links feature of automatically turning ISBN xxx, PMID xxx, RFC xxx into links...
static getUsableTempDirectory()
$wgDebugRawPage
If true, log debugging data from action=raw and load.php.
wfScript( $script='index')
Get the path to a specified script file, respecting file extensions; this is a wrapper around $wgScri...
this hook is for auditing only or null if authentication failed before getting that far or null if we can t even determine that When $user is not it can be in the form of< username >< more info > e g for bot passwords intended to be added to log contexts Fields it might only if the login was with a bot password 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 modifiable modifiable after all normalizations have been except for the $wgMaxImageArea check set to true or false to override the $wgMaxImageArea check result gives extension the possibility to transform it themselves $handler
wfFormatStackFrame( $frame)
Return a string representation of frame.
this hook is for auditing only or null if authentication failed before getting that far or null if we can t even determine that When $user is not it can be in the form of< username >< more info > e g for bot passwords intended to be added to log contexts Fields it might only if the login was with a bot password 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
wfShellExec( $cmd, &$retval=null, $environ=[], $limits=[], $options=[])
Execute a shell command, with time and memory limits mirrored from the PHP configuration if supported...
wfArrayToCgi( $array1, $array2=null, $prefix='')
This function takes one or two arrays as input, and returns a CGI-style string, e.g.
$wgPhpCli
Executable path of the PHP cli binary.
wfGetAllCallers( $limit=3)
Return a string consisting of callers in the stack.
$wgLanguageCode
Site language code.
wfAppendQuery( $url, $query)
Append a query string to an existing URL, which may or may not already have query string parameters a...
wfArrayFilter(array $arr, callable $callback)
wfTimestamp( $outputtype=TS_UNIX, $ts=0)
Get a timestamp string in one of various formats.
$wgExtensionDirectory
Filesystem extensions directory.
wfLoadExtensions(array $exts)
Load multiple extensions at once.
wfIsDebugRawPage()
Returns true if debug logging should be suppressed if $wgDebugRawPage = false.
wfConfiguredReadOnlyReason()
Get the value of $wgReadOnly or the contents of $wgReadOnlyFile.
wfReportTime( $nonce=null)
Returns a script tag that stores the amount of time it took MediaWiki to handle the request in millis...
wfRemoveDotSegments( $urlPath)
Remove all dot-segments in the provided URL path.
wfMergeErrorArrays(... $args)
Merge arrays in the style of getUserPermissionsErrors, with duplicate removal e.g.
wfReadOnly()
Check whether the wiki is in read-only mode.
wfSetBit(&$dest, $bit, $state=true)
As for wfSetVar except setting a bit.
wfMatchesDomainList( $url, $domains)
Check whether a given URL has a domain that occurs in a given set of domains.
wfIncrStats( $key, $count=1)
Increment a statistics counter.
wfUrlencode( $s)
We want some things to be included as literal characters in our title URLs for prettiness, which urlencode encodes by default.
wfTempDir()
Tries to get the system directory for temporary files.
wfClientAcceptsGzip( $force=false)
Whether the client accept gzip encoding.
static getMain()
Get the RequestContext object associated with the main request.
wfNegotiateType( $cprefs, $sprefs)
Returns the 'best' match between a client's requested internet media types and the server's list of a...
static warning( $msg, $callerOffset=1, $level=E_USER_NOTICE, $log='auto')
Adds a warning entry to the log.
wfCgiToArray( $query)
This is the logical opposite of wfArrayToCgi(): it accepts a query string as its argument and returns...
$wgIllegalFileChars
Additional characters that are not allowed in filenames.
wfRandomString( $length=32)
Get a random string containing a number of pseudo-random hex characters.
getHandler()
Get a MediaHandler instance for this file.
wfFindFile( $title, $options=[])
Find a file.
static singleton()
Get a RepoGroup instance.
wfWaitForSlaves( $ifWritesSince=null, $wiki=false, $cluster=false, $timeout=null)
Waits for the replica DBs to catch up to the master position.
$wgMessageCacheType
The cache type for storing the contents of the MediaWiki namespace.
$wgMiserMode
Disable database-intensive features.
wfDebug( $text, $dest='all', array $context=[])
Sends a line to the debug log if enabled or, optionally, to a comment in output.
wfShowingResults( $offset, $limit)
wfMsgReplaceArgs( $message, $args)
Replace message parameter keys on the given formatted output.
static newFallbackSequence()
Factory function accepting multiple message keys and returning a message instance for the first messa...
wfMessageFallback(... $keys)
This function accepts multiple message keys and returns a message instance for the first message whic...
wfTimestampNow()
Convenience function; returns MediaWiki timestamp for the present time.
static header( $code)
Output an HTTP status code header.
$wgImageLimits
Limit images on image description pages to a user-selectable limit.
Class representing a 'diff' between two sequences of strings.
wfHttpError( $code, $label, $desc)
Provide a simple HTTP error.
static makeVariablesScript( $data, $nonce=null)
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 & $options
$wgThumbLimits
Adjust thumbnails on image pages according to a user setting.
unserialize( $serialized)
wfDiff( $before, $after, $params='-u')
Returns unified plain-text diff of two texts.
wfBoolToStr( $value)
Convenience function converts boolean values into "true" or "false" (string) values.
this hook is for auditing only or null if authentication failed before getting that far or null if we can t even determine that When $user is not null
namespace and then decline to actually register it file or subcat img or subcat $title
wfIsCLI()
Check if we are running from the commandline.
wfLoadSkins(array $skins)
Load multiple skins at once.
static factory( $code)
Get a cached or new language object for a given language code.
wfQueriesMustScale()
Should low-performance queries be disabled?
wfWikiID()
Get an ASCII string identifying this wiki This is used as a prefix in memcached keys.
wfGetCaller( $level=2)
Get the name of the function which called this function wfGetCaller( 1 ) is the function with the wfG...
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 $skin
wfDebugMem( $exact=false)
Send a line giving PHP memory usage.
this hook is for auditing only or null if authentication failed before getting that far or null if we can t even determine that When $user is not it can be in the form of< username >< more info > e g for bot passwords intended to be added to log contexts Fields it might only if the login was with a bot password 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 modifiable & $code
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
wfGlobalCacheKey(... $args)
Make a cache key with database-agnostic prefix.
$wgDebugLogPrefix
Prefix for debug log lines.
wfArrayInsertAfter(array $array, array $insert, $after)
Insert array into another array after the specified KEY
$wgMemoryLimit
The minimum amount of memory that MediaWiki "needs"; MediaWiki will try to raise PHP's memory limit i...
$wgDiff3
Path to the GNU diff3 utility.
wfAssembleUrl( $urlParts)
This function will reassemble a URL parsed with wfParseURL.
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
wfSetVar(&$dest, $source, $force=false)
Sets dest to source and returns the original value of dest If source is NULL, it just returns the val...
wfSplitWikiID( $wiki)
Split a wiki ID into DB name and table prefix.
wfGetLBFactory()
Get the load balancer factory object.
wfRandom()
Get a random decimal value in the domain of [0, 1), in a way not likely to give duplicate values for ...
wfReadOnlyReason()
Check if the site is in read-only mode and return the message if so.
wfExpandIRI( $url)
Take a URL, make sure it's expanded to fully qualified, and replace any encoded non-ASCII Unicode cha...
$wgScriptPath
The path we should point to.
wfMkdirParents( $dir, $mode=null, $caller=null)
Make directory, and make all parent directories if they don't exist.
wfDebugLog( $logGroup, $text, $dest='all', array $context=[])
Send a line to a supplementary debug log file, if configured, or main debug log if not...
wfGetMainCache()
Get the main cache object.
wfDeprecated( $function, $version=false, $component=false, $callerOffset=2)
Throws a warning that $function is deprecated.
global $wgCommandLineMode
wfDebugBacktrace( $limit=0)
Safety wrapper for debug_backtrace().
$wgDBprefix
Table name prefix; this should be alphanumeric and not contain spaces nor hyphens.
wfShellExecWithStderr( $cmd, &$retval=null, $environ=[], $limits=[])
Execute a shell command, returning both stdout and stderr.
static makeIndexes( $url)
Converts a URL into a format for el_index.
$wgStyleDirectory
Filesystem stylesheets directory.
wfMemoryLimit()
Set PHP's memory limit to the larger of php.ini or $wgMemoryLimit.
wfClearOutputBuffers()
More legible than passing a 'false' parameter to wfResetOutputBuffers():
controlled by the following MediaWiki still creates a BagOStuff but calls it to it are no ops If the cache daemon can t be it should also disable itself fairly $wgDBname
$wgCanonicalServer
Canonical URL of the server, to use in IRC feeds and notification e-mails.
wfTransactionalTimeLimit()
Set PHP's time limit to the larger of php.ini or $wgTransactionalTimeLimit.
do that in ParserLimitReportFormat instead use this to modify the parameters of the image all existing parser cache entries will be invalid To avoid you ll need to handle that somehow(e.g. with the RejectParserCacheValue hook) because MediaWiki won 't do it for you. & $defaults also a ContextSource after deleting those rows but within the same transaction you ll probably need to make sure the header is varied on and they can depend only on the ResourceLoaderContext $context
static deprecated( $function, $version=false, $component=false, $callerOffset=2)
Show a warning that $function is deprecated.
wfStringToBool( $val)
Convert string value to boolean, when the following are interpreted as true:
MediaWiki Logger LoggerFactory implements a PSR [0] compatible message logging system Named Psr Log LoggerInterface instances can be obtained from the MediaWiki Logger LoggerFactory::getInstance() static method. MediaWiki\Logger\LoggerFactory expects a class implementing the MediaWiki\Logger\Spi interface to act as a factory for new Psr\Log\LoggerInterface instances. The "Spi" in MediaWiki\Logger\Spi stands for "service provider interface". An SPI is an API intended to be implemented or extended by a third party. This software design pattern is intended to enable framework extension and replaceable components. It is specifically used in the MediaWiki\Logger\LoggerFactory service to allow alternate PSR-3 logging implementations to be easily integrated with MediaWiki. The service provider interface allows the backend logging library to be implemented in multiple ways. The $wgMWLoggerDefaultSpi global provides the classname of the default MediaWiki\Logger\Spi implementation to be loaded at runtime. This can either be the name of a class implementing the MediaWiki\Logger\Spi with a zero argument const ructor or a callable that will return an MediaWiki\Logger\Spi instance. Alternately the MediaWiki\Logger\LoggerFactory MediaWiki Logger LoggerFactory
wfArrayFilterByKey(array $arr, callable $callback)
wfEscapeShellArg(... $args)
Version of escapeshellarg() that works better on Windows.
wfUnpack( $format, $data, $length=false)
Wrapper around php's unpack.
static legalChars()
Get a regex character class describing the legal characters in a link.
wfMemcKey(... $args)
Make a cache key for the local wiki.
Allows to change the fields on the form that will be generated $name
static getLocalServerInstance( $fallback=CACHE_NONE)
Factory function for CACHE_ACCEL (referenced from DefaultSettings.php)
if(! $wgDBerrorLogTZ) $wgRequest
$wgServer
URL of the server.
wfRelativePath( $path, $from)
Generate a relative path name to the given file.
wfCanIPUseHTTPS( $ip)
Determine whether the client at a given source IP is likely to be able to access the wiki via HTTPS...
wfBacktrace( $raw=null)
Get a debug backtrace as a string.
wfArrayDiff2( $a, $b)
Like array_diff( $a, $b ) except that it works with two-dimensional arrays.
wfResetSessionID()
Reset the session id.
wfMessage( $key,... $params)
This is the function for getting translated interface messages.
wfGetNull()
Get a platform-independent path to the null file, e.g.
wfBCP47( $code)
Get the normalised IETF language tag See unit test for examples.
wfIniGetBool( $setting)
Safety wrapper around ini_get() for boolean settings.
wfAppendToArrayIfNotDefault( $key, $value, $default, &$changed)
Appends to second array if $value differs from that in $default.
wfArrayPlus2d(array $baseArray, array $newValues)
Merges two (possibly) 2 dimensional arrays into the target array ($baseArray).
Implements some public methods and some protected utility functions which are required by multiple ch...
wfAcceptToPrefs( $accept, $def=' */*')
Converts an Accept-* header into an array mapping string values to quality factors.
$wgResponsiveImages
Generate and use thumbnails suitable for screens with 1.5 and 2.0 pixel densities.
wfLoadExtension( $ext, $path=null)
Load an extension.
$wgDiff
Path to the GNU diff utility.
$wgLoadScript
The URL path to load.php.
wfThumbIsStandard(File $file, array $params)
Returns true if these thumbnail parameters match one that MediaWiki requests from file description pa...
$wgDirectoryMode
Default value for chmoding of new directories.
wfGetLB( $wiki=false)
Get a load balancer object.
do that in ParserLimitReportFormat instead use this to modify the parameters of the image all existing parser cache entries will be invalid To avoid you ll need to handle that somehow(e.g. with the RejectParserCacheValue hook) because MediaWiki won 't do it for you. & $defaults also a ContextSource after deleting those rows but within the same transaction you ll probably need to make sure the header is varied on $request
wfArrayDiff2_cmp( $a, $b)
static bcp47( $code)
Get the normalised IETF language tag See unit test for examples.
wfShorthandToInteger( $string='', $default=-1)
Converts shorthand byte notation to integer form.
return true to allow those checks to and false if checking is done & $user
static run( $event, array $args=[], $deprecatedVersion=null)
Call hook functions defined in Hooks::register and $wgHooks.
wfObjectToArray( $objOrArray, $recursive=true)
Recursively converts the parameter (an object) to an array with the same data.
wfGetScriptUrl()
Get the script URL.
$wgShowHostnames
Expose backend server host names through the API and various HTML comments.
$wgTransactionalTimeLimit
The minimum amount of time that MediaWiki needs for "slow" write request, particularly ones with mult...
static newFromText( $text, $defaultNamespace=NS_MAIN)
Create a new Title from text, such as what one would find in a link.