23 if ( !defined(
'MEDIAWIKI' ) ) {
24 die(
"This file is part of MediaWiki, it is not a valid entry point" );
44 if ( !function_exists(
'hash_equals' ) ) {
70 function hash_equals( $known_string, $user_string ) {
72 if ( !is_string( $known_string ) ) {
73 trigger_error(
'hash_equals(): Expected known_string to be a string, ' .
74 gettype( $known_string ) .
' given', E_USER_WARNING );
79 if ( !is_string( $user_string ) ) {
80 trigger_error(
'hash_equals(): Expected user_string to be a string, ' .
81 gettype( $user_string ) .
' given', E_USER_WARNING );
86 $known_string_len = strlen( $known_string );
87 if ( $known_string_len !== strlen( $user_string ) ) {
92 for ( $i = 0; $i < $known_string_len; $i++ ) {
93 $result |= ord( $known_string[$i] ) ^ ord( $user_string[$i] );
114 $path =
"$wgExtensionDirectory/$ext/extension.json";
135 foreach ( $exts
as $ext ) {
136 $registry->queue(
"$wgExtensionDirectory/$ext/extension.json" );
151 $path =
"$wgStyleDirectory/$skin/skin.json";
166 foreach ( $skins
as $skin ) {
167 $registry->queue(
"$wgStyleDirectory/$skin/skin.json" );
178 return array_udiff( $a, $b,
'wfArrayDiff2_cmp' );
187 if ( is_string( $a ) && is_string( $b ) ) {
188 return strcmp( $a, $b );
189 } elseif ( count( $a ) !== count( $b ) ) {
190 return count( $a ) < count( $b ) ? -1 : 1;
194 while ( (
list( , $valueA ) = each( $a ) ) && (
list( , $valueB ) = each( $b ) ) ) {
195 $cmp = strcmp( $valueA, $valueB );
214 if ( is_null( $changed ) ) {
215 throw new MWException(
'GlobalFunctions::wfAppendToArrayIfNotDefault got null' );
217 if ( $default[$key] !==
$value ) {
242 $args = func_get_args();
245 foreach ( $errors
as $params ) {
249 $params = array_merge( [ $msg->getKey() ], $msg->getParams() );
251 # @todo FIXME: Sometimes get nested arrays for $params,
252 # which leads to E_NOTICEs
253 $spec = implode(
"\t", $params );
254 $out[$spec] = $originalParams;
257 return array_values(
$out );
270 $keys = array_keys( $array );
271 $offsetByKey = array_flip(
$keys );
273 $offset = $offsetByKey[$after];
276 $before = array_slice( $array, 0, $offset + 1,
true );
277 $after = array_slice( $array, $offset + 1, count( $array ) - $offset,
true );
279 $output = $before + $insert + $after;
293 if ( is_object( $objOrArray ) ) {
294 $objOrArray = get_object_vars( $objOrArray );
296 foreach ( $objOrArray
as $key =>
$value ) {
297 if ( $recursive && ( is_object(
$value ) || is_array(
$value ) ) ) {
320 $max = mt_getrandmax() + 1;
321 $rand = number_format( ( mt_rand() * $max + mt_rand() ) / $max / $max, 12,
'.',
'' );
337 for ( $n = 0; $n < $length; $n += 7 ) {
338 $str .= sprintf(
'%07x', mt_rand() & 0xfffffff );
340 return substr( $str, 0, $length );
373 if ( is_null(
$s ) ) {
378 if ( is_null( $needle ) ) {
379 $needle = [
'%3B',
'%40',
'%24',
'%21',
'%2A',
'%28',
'%29',
'%2C',
'%2F',
'%7E' ];
380 if ( !isset( $_SERVER[
'SERVER_SOFTWARE'] ) ||
381 ( strpos( $_SERVER[
'SERVER_SOFTWARE'],
'Microsoft-IIS/7' ) ===
false )
387 $s = urlencode(
$s );
390 [
';',
'@',
'$',
'!',
'*',
'(',
')',
',',
'/',
'~',
':' ],
407 function wfArrayToCgi( $array1, $array2 = null, $prefix =
'' ) {
408 if ( !is_null( $array2 ) ) {
409 $array1 = $array1 + $array2;
413 foreach ( $array1
as $key =>
$value ) {
418 if ( $prefix !==
'' ) {
419 $key = $prefix .
"[$key]";
421 if ( is_array(
$value ) ) {
424 $cgi .= $firstTime ?
'' :
'&';
425 if ( is_array( $v ) ) {
428 $cgi .= urlencode( $key .
"[$k]" ) .
'=' . urlencode( $v );
433 if ( is_object(
$value ) ) {
436 $cgi .= urlencode( $key ) .
'=' . urlencode(
$value );
456 $bits = explode(
'&',
$query );
458 foreach ( $bits
as $bit ) {
462 if ( strpos( $bit,
'=' ) ===
false ) {
469 $key = urldecode( $key );
471 if ( strpos( $key,
'[' ) !==
false ) {
472 $keys = array_reverse( explode(
'[', $key ) );
473 $key = array_pop(
$keys );
476 $k = substr( $k, 0, -1 );
477 $temp = [ $k => $temp ];
479 if ( isset(
$ret[$key] ) ) {
480 $ret[$key] = array_merge(
$ret[$key], $temp );
500 if ( is_array(
$query ) ) {
506 $hashPos = strpos( $url,
'#' );
507 if ( $hashPos !==
false ) {
508 $fragment = substr( $url, $hashPos );
509 $url = substr( $url, 0, $hashPos );
513 if (
false === strpos( $url,
'?' ) ) {
521 if ( $fragment !==
false ) {
556 } elseif ( $defaultProto ===
PROTO_INTERNAL && $wgInternalServer !==
false ) {
562 $defaultProto = $wgRequest->getProtocol() .
'://';
568 $serverHasProto = $bits && $bits[
'scheme'] !=
'';
571 if ( $serverHasProto ) {
572 $defaultProto = $bits[
'scheme'] .
'://';
581 $defaultProtoWithoutSlashes = substr( $defaultProto, 0, -2 );
583 if ( substr( $url, 0, 2 ) ==
'//' ) {
584 $url = $defaultProtoWithoutSlashes . $url;
585 } elseif ( substr( $url, 0, 1 ) ==
'/' ) {
588 $url = ( $serverHasProto ?
'' : $defaultProtoWithoutSlashes ) . $serverUrl . $url;
595 if ( $defaultProto ===
PROTO_HTTPS && $wgHttpsPort != 443 ) {
596 $bits[
'port'] = $wgHttpsPort;
599 if ( $bits && isset( $bits[
'path'] ) ) {
605 } elseif ( substr( $url, 0, 1 ) !=
'/' ) {
606 # URL is a relative path
610 # Expanded URL is not valid.
630 if ( isset( $urlParts[
'delimiter'] ) ) {
631 if ( isset( $urlParts[
'scheme'] ) ) {
632 $result .= $urlParts[
'scheme'];
635 $result .= $urlParts[
'delimiter'];
638 if ( isset( $urlParts[
'host'] ) ) {
639 if ( isset( $urlParts[
'user'] ) ) {
641 if ( isset( $urlParts[
'pass'] ) ) {
642 $result .=
':' . $urlParts[
'pass'];
649 if ( isset( $urlParts[
'port'] ) ) {
650 $result .=
':' . $urlParts[
'port'];
654 if ( isset( $urlParts[
'path'] ) ) {
658 if ( isset( $urlParts[
'query'] ) ) {
659 $result .=
'?' . $urlParts[
'query'];
662 if ( isset( $urlParts[
'fragment'] ) ) {
663 $result .=
'#' . $urlParts[
'fragment'];
682 $inputLength = strlen( $urlPath );
684 while ( $inputOffset < $inputLength ) {
685 $prefixLengthOne = substr( $urlPath, $inputOffset, 1 );
686 $prefixLengthTwo = substr( $urlPath, $inputOffset, 2 );
687 $prefixLengthThree = substr( $urlPath, $inputOffset, 3 );
688 $prefixLengthFour = substr( $urlPath, $inputOffset, 4 );
691 if ( $prefixLengthTwo ==
'./' ) {
692 # Step A, remove leading "./"
694 } elseif ( $prefixLengthThree ==
'../' ) {
695 # Step A, remove leading "../"
697 } elseif ( ( $prefixLengthTwo ==
'/.' ) && ( $inputOffset + 2 == $inputLength ) ) {
698 # Step B, replace leading "/.$" with "/"
700 $urlPath[$inputOffset] =
'/';
701 } elseif ( $prefixLengthThree ==
'/./' ) {
702 # Step B, replace leading "/./" with "/"
704 } elseif ( $prefixLengthThree ==
'/..' && ( $inputOffset + 3 == $inputLength ) ) {
705 # Step C, replace leading "/..$" with "/" and
706 # remove last path component in output
708 $urlPath[$inputOffset] =
'/';
710 } elseif ( $prefixLengthFour ==
'/../' ) {
711 # Step C, replace leading "/../" with "/" and
712 # remove last path component in output
715 } elseif ( ( $prefixLengthOne ==
'.' ) && ( $inputOffset + 1 == $inputLength ) ) {
716 # Step D, remove "^.$"
718 } elseif ( ( $prefixLengthTwo ==
'..' ) && ( $inputOffset + 2 == $inputLength ) ) {
719 # Step D, remove "^..$"
722 # Step E, move leading path segment to output
723 if ( $prefixLengthOne ==
'/' ) {
724 $slashPos = strpos( $urlPath,
'/', $inputOffset + 1 );
726 $slashPos = strpos( $urlPath,
'/', $inputOffset );
728 if ( $slashPos ===
false ) {
729 $output .= substr( $urlPath, $inputOffset );
730 $inputOffset = $inputLength;
732 $output .= substr( $urlPath, $inputOffset, $slashPos - $inputOffset );
733 $inputOffset += $slashPos - $inputOffset;
738 $slashPos = strrpos(
$output,
'/' );
739 if ( $slashPos ===
false ) {
761 static $withProtRel = null, $withoutProtRel = null;
762 $cachedValue = $includeProtocolRelative ? $withProtRel : $withoutProtRel;
763 if ( !is_null( $cachedValue ) ) {
769 if ( is_array( $wgUrlProtocols ) ) {
771 foreach ( $wgUrlProtocols
as $protocol ) {
773 if ( $includeProtocolRelative || $protocol !==
'//' ) {
774 $protocols[] = preg_quote( $protocol,
'/' );
778 $retval = implode(
'|', $protocols );
788 if ( $includeProtocolRelative ) {
823 $wasRelative = substr( $url, 0, 2 ) ==
'//';
824 if ( $wasRelative ) {
827 MediaWiki\suppressWarnings();
828 $bits = parse_url( $url );
829 MediaWiki\restoreWarnings();
832 if ( !$bits || !isset( $bits[
'scheme'] ) ) {
837 $bits[
'scheme'] = strtolower( $bits[
'scheme'] );
840 if ( in_array( $bits[
'scheme'] .
'://', $wgUrlProtocols ) ) {
841 $bits[
'delimiter'] =
'://';
842 } elseif ( in_array( $bits[
'scheme'] .
':', $wgUrlProtocols ) ) {
843 $bits[
'delimiter'] =
':';
846 if ( isset( $bits[
'path'] ) ) {
847 $bits[
'host'] = $bits[
'path'];
855 if ( !isset( $bits[
'host'] ) ) {
859 if ( isset( $bits[
'path'] ) ) {
861 if ( substr( $bits[
'path'], 0, 1 ) !==
'/' ) {
862 $bits[
'path'] =
'/' . $bits[
'path'];
870 if ( $wasRelative ) {
871 $bits[
'scheme'] =
'';
872 $bits[
'delimiter'] =
'//';
888 return preg_replace_callback(
889 '/((?:%[89A-F][0-9A-F])+)/i',
890 'wfExpandIRI_callback',
915 if ( $bits[
'scheme'] ==
'mailto' ) {
916 $mailparts = explode(
'@', $bits[
'host'], 2 );
917 if ( count( $mailparts ) === 2 ) {
918 $domainpart = strtolower( implode(
'.', array_reverse( explode(
'.', $mailparts[1] ) ) ) );
923 $reversedHost = $domainpart .
'@' . $mailparts[0];
925 $reversedHost = strtolower( implode(
'.', array_reverse( explode(
'.', $bits[
'host'] ) ) ) );
929 if ( substr( $reversedHost, -1, 1 ) !==
'.' ) {
930 $reversedHost .=
'.';
933 $prot = $bits[
'scheme'];
934 $index = $prot . $bits[
'delimiter'] . $reversedHost;
936 if ( isset( $bits[
'port'] ) ) {
937 $index .=
':' . $bits[
'port'];
939 if ( isset( $bits[
'path'] ) ) {
940 $index .= $bits[
'path'];
944 if ( isset( $bits[
'query'] ) ) {
945 $index .=
'?' . $bits[
'query'];
947 if ( isset( $bits[
'fragment'] ) ) {
948 $index .=
'#' . $bits[
'fragment'];
952 return [
"http:$index",
"https:$index" ];
966 if ( is_array( $bits ) && isset( $bits[
'host'] ) ) {
967 $host =
'.' . $bits[
'host'];
968 foreach ( (
array)$domains
as $domain ) {
969 $domain =
'.' . $domain;
970 if ( substr( $host, -strlen( $domain ) ) === $domain ) {
999 global $wgDebugRawPage, $wgDebugLogPrefix;
1006 $text = trim( $text );
1008 if ( $wgDebugTimestamps ) {
1009 $context[
'seconds_elapsed'] = sprintf(
1011 microtime(
true ) - $wgRequestTime
1015 ( memory_get_usage(
true ) / ( 1024 * 1024 ) )
1019 if ( $wgDebugLogPrefix !==
'' ) {
1020 $context[
'prefix'] = $wgDebugLogPrefix;
1022 $context[
'private'] = ( $dest ===
false || $dest ===
'private' );
1024 $logger = LoggerFactory::getInstance(
'wfDebug' );
1037 # Check for raw action using $_GET not $wgRequest, since the latter might not be initialised yet
1038 if ( ( isset( $_GET[
'action'] ) && $_GET[
'action'] ==
'raw' )
1040 isset( $_SERVER[
'SCRIPT_NAME'] )
1041 && substr( $_SERVER[
'SCRIPT_NAME'], -8 ) ==
'load.php'
1057 $mem = memory_get_usage();
1059 $mem = floor( $mem / 1024 ) .
' KiB';
1063 wfDebug(
"Memory usage: $mem\n" );
1094 $text = trim( $text );
1096 $logger = LoggerFactory::getInstance( $logGroup );
1097 $context[
'private'] = ( $dest ===
false || $dest ===
'private' );
1110 $logger = LoggerFactory::getInstance(
'wfLogDBError' );
1111 $logger->error( trim( $text ),
$context );
1127 function wfDeprecated( $function, $version =
false, $component =
false, $callerOffset = 2 ) {
1141 function wfWarn( $msg, $callerOffset = 1, $level = E_USER_NOTICE ) {
1154 function wfLogWarning( $msg, $callerOffset = 1, $level = E_USER_WARNING ) {
1173 $logger = LoggerFactory::getInstance(
'wfErrorLog' );
1175 $logger->info( trim( $text ),
$context );
1182 global $wgDebugLogGroups, $wgDebugRawPage;
1189 $profiler->logData();
1192 if ( $config->get(
'StatsdServer' ) ) {
1194 $statsdServer = explode(
':', $config->get(
'StatsdServer' ) );
1195 $statsdHost = $statsdServer[0];
1196 $statsdPort = isset( $statsdServer[1] ) ? $statsdServer[1] : 8125;
1197 $statsdSender =
new SocketSender( $statsdHost, $statsdPort );
1199 $statsdClient->setSamplingRates( $config->get(
'StatsdSamplingRates' ) );
1200 $statsdClient->send(
$context->getStats()->getBuffer() );
1206 # Profiling must actually be enabled...
1207 if ( $profiler instanceof ProfilerStub ) {
1211 if ( isset( $wgDebugLogGroups[
'profileoutput'] )
1212 && $wgDebugLogGroups[
'profileoutput'] ===
false
1221 $ctx = [
'elapsed' =>
$request->getElapsedTime() ];
1222 if ( !empty( $_SERVER[
'HTTP_X_FORWARDED_FOR'] ) ) {
1223 $ctx[
'forwarded_for'] = $_SERVER[
'HTTP_X_FORWARDED_FOR'];
1225 if ( !empty( $_SERVER[
'HTTP_CLIENT_IP'] ) ) {
1226 $ctx[
'client_ip'] = $_SERVER[
'HTTP_CLIENT_IP'];
1228 if ( !empty( $_SERVER[
'HTTP_FROM'] ) ) {
1229 $ctx[
'from'] = $_SERVER[
'HTTP_FROM'];
1231 if ( isset( $ctx[
'forwarded_for'] ) ||
1232 isset( $ctx[
'client_ip'] ) ||
1233 isset( $ctx[
'from'] ) ) {
1234 $ctx[
'proxy'] = $_SERVER[
'REMOTE_ADDR'];
1241 $ctx[
'anon'] =
$user->isItemLoaded(
'id' ) &&
$user->isAnon();
1246 $ctx[
'url'] = urldecode(
$request->getRequestURL() );
1251 $ctx[
'output'] = $profiler->getOutput();
1253 $log = LoggerFactory::getInstance(
'profileoutput' );
1254 $log->info(
"Elapsed: {elapsed}; URL: <{url}>\n{output}", $ctx );
1266 $stats->updateCount( $key,
$count );
1288 if ( $readOnly !==
false ) {
1292 static $lbReadOnly = null;
1293 if ( $lbReadOnly === null ) {
1296 $lbReadOnly =
wfGetLB()->getReadOnlyReason();
1309 global $wgReadOnly, $wgReadOnlyFile;
1311 if ( $wgReadOnly === null ) {
1313 if ( is_file( $wgReadOnlyFile ) && filesize( $wgReadOnlyFile ) > 0 ) {
1314 $wgReadOnly = file_get_contents( $wgReadOnlyFile );
1316 $wgReadOnly =
false;
1339 # Identify which language to get or create a language object for.
1340 # Using is_object here due to Stub objects.
1341 if ( is_object( $langcode ) ) {
1342 # Great, we already have the object (hopefully)!
1347 if ( $langcode ===
true || $langcode === $wgLanguageCode ) {
1348 # $langcode is the language code of the wikis content language object.
1349 # or it is a boolean and value is true
1354 if ( $langcode ===
false || $langcode === $wgLang->getCode() ) {
1355 # $langcode is the language code of user language object.
1356 # or it was a boolean and value is false
1361 if ( in_array( $langcode, $validCodes ) ) {
1362 # $langcode corresponds to a valid language.
1366 # $langcode is a string, but not a valid language code; use content language.
1367 wfDebug(
"Invalid language code passed to wfGetLangObj, falling back to content language.\n" );
1388 $params = func_get_args();
1389 array_shift( $params );
1390 if ( isset( $params[0] ) && is_array( $params[0] ) ) {
1391 $params = $params[0];
1393 return new Message( $key, $params );
1409 $args = func_get_args();
1410 return call_user_func_array(
'Message::newFallbackSequence',
$args );
1422 # Fix windows line-endings
1423 # Some messages are split with explode("\n", $msg)
1424 $message = str_replace(
"\r",
'', $message );
1428 if ( is_array(
$args[0] ) ) {
1431 $replacementKeys = [];
1432 foreach (
$args as $n => $param ) {
1433 $replacementKeys[
'$' . ( $n + 1 )] = $param;
1435 $message = strtr( $message, $replacementKeys );
1450 if ( is_null( $host ) ) {
1452 # Hostname overriding
1453 global $wgOverrideHostname;
1454 if ( $wgOverrideHostname !==
false ) {
1455 # Set static and skip any detection
1456 $host = $wgOverrideHostname;
1460 if ( function_exists(
'posix_uname' ) ) {
1462 $uname = posix_uname();
1466 if ( is_array( $uname ) && isset( $uname[
'nodename'] ) ) {
1467 $host = $uname[
'nodename'];
1468 } elseif ( getenv(
'COMPUTERNAME' ) ) {
1469 # Windows computer name
1470 $host = getenv(
'COMPUTERNAME' );
1472 # This may be a virtual server.
1473 $host = $_SERVER[
'SERVER_NAME'];
1491 $responseTime = round( ( microtime(
true ) - $wgRequestTime ) * 1000 );
1492 $reportVars = [
'wgBackendResponseTime' => $responseTime ];
1493 if ( $wgShowHostnames ) {
1510 static $disabled = null;
1512 if ( is_null( $disabled ) ) {
1513 $disabled = !function_exists(
'debug_backtrace' );
1515 wfDebug(
"debug_backtrace() is disabled\n" );
1523 return array_slice( debug_backtrace( DEBUG_BACKTRACE_PROVIDE_OBJECT,
$limit + 1 ), 1 );
1525 return array_slice( debug_backtrace(), 1 );
1540 if ( $raw === null ) {
1545 $frameFormat =
"%s line %s calls %s()\n";
1546 $traceFormat =
"%s";
1548 $frameFormat =
"<li>%s line %s calls %s()</li>\n";
1549 $traceFormat =
"<ul>\n%s</ul>\n";
1552 $frames = array_map(
function ( $frame )
use ( $frameFormat ) {
1553 $file = !empty( $frame[
'file'] ) ? basename( $frame[
'file'] ) :
'-';
1554 $line = isset( $frame[
'line'] ) ? $frame[
'line'] :
'-';
1555 $call = $frame[
'function'];
1556 if ( !empty( $frame[
'class'] ) ) {
1557 $call = $frame[
'class'] . $frame[
'type'] . $call;
1559 return sprintf( $frameFormat, $file, $line, $call );
1562 return sprintf( $traceFormat, implode(
'', $frames ) );
1576 if ( isset( $backtrace[$level] ) ) {
1593 $limit = count( $trace ) - 1;
1596 return implode(
'/', array_map(
'wfFormatStackFrame', $trace ) );
1606 if ( !isset( $frame[
'function'] ) ) {
1607 return 'NO_FUNCTION_GIVEN';
1609 return isset( $frame[
'class'] ) && isset( $frame[
'type'] ) ?
1610 $frame[
'class'] . $frame[
'type'] . $frame[
'function'] :
1624 return wfMessage(
'showingresults' )->numParams(
$limit, $offset + 1 )->parse();
1636 if (
$result === null || $force ) {
1638 if ( isset( $_SERVER[
'HTTP_ACCEPT_ENCODING'] ) ) {
1639 # @todo FIXME: We may want to blacklist some broken browsers
1642 '/\bgzip(?:;(q)=([0-9]+(?:\.[0-9]+)))?\b/',
1643 $_SERVER[
'HTTP_ACCEPT_ENCODING'],
1647 if ( isset( $m[2] ) && ( $m[1] ==
'q' ) && ( $m[2] == 0 ) ) {
1651 wfDebug(
"wfClientAcceptsGzip: client accepts gzip.\n" );
1669 global $wgEnableMagicLinks;
1670 static $repl = null, $repl2 = null;
1671 if ( $repl === null || defined(
'MW_PARSER_TEST' ) || defined(
'MW_PHPUNIT_TEST' ) ) {
1675 '"' =>
'"',
'&' =>
'&',
"'" =>
''',
'<' =>
'<',
1676 '=' =>
'=',
'>' =>
'>',
'[' =>
'[',
']' =>
']',
1677 '{' =>
'{',
'|' =>
'|',
'}' =>
'}',
';' =>
';',
1678 "\n#" =>
"\n#",
"\r#" =>
"\r#",
1679 "\n*" =>
"\n*",
"\r*" =>
"\r*",
1680 "\n:" =>
"\n:",
"\r:" =>
"\r:",
1681 "\n " =>
"\n ",
"\r " =>
"\r ",
1682 "\n\n" =>
"\n ",
"\r\n" =>
" \n",
1683 "\n\r" =>
"\n ",
"\r\r" =>
"\r ",
1684 "\n\t" =>
"\n	",
"\r\t" =>
"\r	",
1685 "\n----" =>
"\n----",
"\r----" =>
"\r----",
1686 '__' =>
'__',
'://' =>
'://',
1689 $magicLinks = array_keys( array_filter( $wgEnableMagicLinks ) );
1691 foreach ( $magicLinks
as $magic ) {
1692 $repl[
"$magic "] =
"$magic ";
1693 $repl[
"$magic\t"] =
"$magic	";
1694 $repl[
"$magic\r"] =
"$magic ";
1695 $repl[
"$magic\n"] =
"$magic ";
1696 $repl[
"$magic\f"] =
"$magic";
1702 foreach ( $wgUrlProtocols
as $prot ) {
1703 if ( substr( $prot, -1 ) ===
':' ) {
1704 $repl2[] = preg_quote( substr( $prot, 0, -1 ),
'/' );
1707 $repl2 = $repl2 ?
'/\b(' . implode(
'|', $repl2 ) .
'):/i' :
'/^(?!)/';
1709 $text = substr( strtr(
"\n$text", $repl ), 1 );
1710 $text = preg_replace( $repl2,
'$1:', $text );
1726 if ( !is_null(
$source ) || $force ) {
1741 function wfSetBit( &$dest, $bit, $state =
true ) {
1742 $temp = (bool)( $dest & $bit );
1743 if ( !is_null( $state ) ) {
1761 $s = str_replace(
"\n",
"<br />\n", var_export( $var,
true ) .
"\n" );
1762 if ( headers_sent() || !isset( $wgOut ) || !is_object( $wgOut ) ) {
1765 $wgOut->addHTML(
$s );
1781 $wgOut->sendCacheControl();
1784 header(
'Content-type: text/html; charset=utf-8' );
1785 print '<!DOCTYPE html>' .
1786 '<html><head><title>' .
1787 htmlspecialchars( $label ) .
1788 '</title></head><body><h1>' .
1789 htmlspecialchars( $label ) .
1791 nl2br( htmlspecialchars( $desc ) ) .
1792 "</p></body></html>\n";
1813 if ( $resetGzipEncoding ) {
1817 $wgDisableOutputCompression =
true;
1819 while (
$status = ob_get_status() ) {
1820 if ( isset(
$status[
'flags'] ) ) {
1821 $flags = PHP_OUTPUT_HANDLER_CLEANABLE | PHP_OUTPUT_HANDLER_REMOVABLE;
1823 } elseif ( isset(
$status[
'del'] ) ) {
1827 $deleteable =
$status[
'type'] !== 0;
1829 if ( !$deleteable ) {
1834 if (
$status[
'name'] ===
'MediaWikiTestCase::wfResetOutputBuffersBarrier' ) {
1838 if ( !ob_end_clean() ) {
1843 if ( $resetGzipEncoding ) {
1844 if (
$status[
'name'] ==
'ob_gzhandler' ) {
1847 header_remove(
'Content-Encoding' );
1879 # No arg means accept anything (per HTTP spec)
1881 return [ $def => 1.0 ];
1886 $parts = explode(
',', $accept );
1888 foreach ( $parts
as $part ) {
1889 # @todo FIXME: Doesn't deal with params like 'text/html; level=1'
1890 $values = explode(
';', trim( $part ) );
1892 if ( count( $values ) == 1 ) {
1893 $prefs[$values[0]] = 1.0;
1894 } elseif ( preg_match(
'/q\s*=\s*(\d*\.\d+)/', $values[1], $match ) ) {
1895 $prefs[$values[0]] = floatval( $match[1] );
1915 if ( array_key_exists( $type, $avail ) ) {
1918 $mainType = explode(
'/', $type )[0];
1919 if ( array_key_exists(
"$mainType/*", $avail ) ) {
1920 return "$mainType/*";
1921 } elseif ( array_key_exists(
'*/*', $avail ) ) {
1945 foreach ( array_keys( $sprefs )
as $type ) {
1946 $subType = explode(
'/', $type )[1];
1947 if ( $subType !=
'*' ) {
1950 $combine[
$type] = $sprefs[
$type] * $cprefs[$ckey];
1955 foreach ( array_keys( $cprefs )
as $type ) {
1956 $subType = explode(
'/', $type )[1];
1957 if ( $subType !=
'*' && !array_key_exists( $type, $sprefs ) ) {
1960 $combine[
$type] = $sprefs[$skey] * $cprefs[
$type];
1968 foreach ( array_keys( $combine )
as $type ) {
1969 if ( $combine[$type] > $bestq ) {
1971 $bestq = $combine[
$type];
1985 MediaWiki\suppressWarnings( $end );
1993 MediaWiki\suppressWarnings(
true );
1996 # Autodetect, convert and provide timestamps of various types
1998 require_once __DIR__ .
'/libs/time/defines.php';
2010 if (
$ret ===
false ) {
2011 wfDebug(
"wfTimestamp() fed bogus time value: TYPE=$outputtype; VALUE=$ts\n" );
2025 if ( is_null( $ts ) ) {
2048 static $isWindows = null;
2049 if ( $isWindows === null ) {
2050 $isWindows = strtoupper( substr( PHP_OS, 0, 3 ) ) ===
'WIN';
2061 return defined(
'HHVM_VERSION' );
2078 if ( $wgTmpDirectory !==
false ) {
2098 throw new MWException( __FUNCTION__ .
" given storage path '$dir'." );
2101 if ( !is_null( $caller ) ) {
2102 wfDebug(
"$caller: called wfMkdirParents($dir)\n" );
2105 if ( strval(
$dir ) ===
'' || is_dir(
$dir ) ) {
2109 $dir = str_replace( [
'\\',
'/' ], DIRECTORY_SEPARATOR,
$dir );
2111 if ( is_null( $mode ) ) {
2116 MediaWiki\suppressWarnings();
2117 $ok = mkdir(
$dir, $mode,
true );
2118 MediaWiki\restoreWarnings();
2122 if ( is_dir(
$dir ) ) {
2138 wfDebug( __FUNCTION__ .
"( $dir )\n" );
2140 if ( is_dir(
$dir ) ) {
2141 $objects = scandir(
$dir );
2142 foreach ( $objects
as $object ) {
2143 if ( $object !=
"." && $object !=
".." ) {
2144 if ( filetype(
$dir .
'/' . $object ) ==
"dir" ) {
2147 unlink(
$dir .
'/' . $object );
2162 function wfPercent( $nr, $acc = 2, $round =
true ) {
2163 $ret = sprintf(
"%.${acc}f", $nr );
2164 return $round ? round(
$ret, $acc ) .
'%' :
"$ret%";
2191 $val = strtolower( ini_get( $setting ) );
2196 || preg_match(
"/^\s*[+-]?0*[1-9]/", $val );
2212 $args = func_get_args();
2213 if ( count(
$args ) === 1 && is_array( reset(
$args ) ) ) {
2238 $tokens = preg_split(
'/(\\\\*")/', $arg, -1, PREG_SPLIT_DELIM_CAPTURE );
2242 if ( $iteration % 2 == 1 ) {
2244 $arg .= str_replace(
'\\',
'\\\\', substr( $token, 0, -1 ) ) .
'\\"';
2245 } elseif ( $iteration % 4 == 2 ) {
2247 $arg .= str_replace(
'^',
'^^', $token );
2257 if ( preg_match(
'/^(.*?)(\\\\+)$/', $arg, $m ) ) {
2258 $arg = $m[1] . str_replace(
'\\',
'\\\\', $m[2] );
2262 $retVal .=
'"' . $arg .
'"';
2264 $retVal .= escapeshellarg( $arg );
2277 static $disabled = null;
2278 if ( is_null( $disabled ) ) {
2279 if ( !function_exists(
'proc_open' ) ) {
2280 wfDebug(
"proc_open() is disabled\n" );
2281 $disabled =
'disabled';
2314 global $IP, $wgMaxShellMemory, $wgMaxShellFileSize, $wgMaxShellTime,
2315 $wgMaxShellWallClockTime, $wgShellCgroup;
2320 return 'Unable to run external programs, proc_open() is disabled.';
2323 $includeStderr = isset(
$options[
'duplicateStderr'] ) &&
$options[
'duplicateStderr'];
2329 foreach ( $environ
as $k => $v ) {
2337 $envcmd .=
"set $k=" . preg_replace(
'/([&|()<>^"])/',
'^\\1', $v ) .
'&& ';
2342 $envcmd .=
"$k=" . escapeshellarg( $v ) .
' ';
2345 if ( is_array( $cmd ) ) {
2349 $cmd = $envcmd . $cmd;
2351 $useLogPipe =
false;
2352 if ( is_executable(
'/bin/bash' ) ) {
2353 $time = intval( isset( $limits[
'time'] ) ? $limits[
'time'] : $wgMaxShellTime );
2354 if ( isset( $limits[
'walltime'] ) ) {
2355 $wallTime = intval( $limits[
'walltime'] );
2356 } elseif ( isset( $limits[
'time'] ) ) {
2359 $wallTime = intval( $wgMaxShellWallClockTime );
2361 $mem = intval( isset( $limits[
'memory'] ) ? $limits[
'memory'] : $wgMaxShellMemory );
2362 $filesize = intval( isset( $limits[
'filesize'] ) ? $limits[
'filesize'] : $wgMaxShellFileSize );
2364 if (
$time > 0 || $mem > 0 || $filesize > 0 || $wallTime > 0 ) {
2365 $cmd =
'/bin/bash ' . escapeshellarg(
"$IP/includes/limit.sh" ) .
' ' .
2366 escapeshellarg( $cmd ) .
' ' .
2368 "MW_INCLUDE_STDERR=" . ( $includeStderr ?
'1' :
'' ) .
';' .
2369 "MW_CPU_LIMIT=$time; " .
2370 'MW_CGROUP=' . escapeshellarg( $wgShellCgroup ) .
'; ' .
2371 "MW_MEM_LIMIT=$mem; " .
2372 "MW_FILE_SIZE_LIMIT=$filesize; " .
2373 "MW_WALL_CLOCK_LIMIT=$wallTime; " .
2374 "MW_USE_LOG_PIPE=yes"
2377 } elseif ( $includeStderr ) {
2380 } elseif ( $includeStderr ) {
2383 wfDebug(
"wfShellExec: $cmd\n" );
2391 '(): total length of $cmd must not exceed SHELL_MAX_ARG_STRLEN' );
2395 0 => [
'file',
'php://stdin',
'r' ],
2396 1 => [
'pipe',
'w' ],
2397 2 => [
'file',
'php://stderr',
'w' ] ];
2398 if ( $useLogPipe ) {
2399 $desc[3] = [
'pipe',
'w' ];
2402 $scoped =
Profiler::instance()->scopedProfileIn( __FUNCTION__ .
'-' . $profileMethod );
2403 $proc = proc_open( $cmd, $desc, $pipes );
2405 wfDebugLog(
'exec',
"proc_open() failed: $cmd" );
2409 $outBuffer = $logBuffer =
'';
2425 $eintr = defined(
'SOCKET_EINTR' ) ? SOCKET_EINTR : 4;
2426 $eintrMessage =
"stream_select(): unable to select [$eintr]";
2432 while ( $running ===
true || $numReadyPipes !== 0 ) {
2434 $status = proc_get_status( $proc );
2443 $readyPipes = $pipes;
2447 @trigger_error(
'' );
2448 $numReadyPipes = @stream_select( $readyPipes, $emptyArray, $emptyArray, $timeout );
2449 if ( $numReadyPipes ===
false ) {
2451 $error = error_get_last();
2452 if ( strncmp( $error[
'message'], $eintrMessage, strlen( $eintrMessage ) ) == 0 ) {
2455 trigger_error( $error[
'message'], E_USER_WARNING );
2456 $logMsg = $error[
'message'];
2460 foreach ( $readyPipes
as $fd => $pipe ) {
2461 $block = fread( $pipe, 65536 );
2462 if ( $block ===
'' ) {
2464 fclose( $pipes[$fd] );
2465 unset( $pipes[$fd] );
2469 } elseif ( $block ===
false ) {
2471 $logMsg =
"Error reading from pipe";
2473 } elseif ( $fd == 1 ) {
2475 $outBuffer .= $block;
2476 } elseif ( $fd == 3 ) {
2478 $logBuffer .= $block;
2479 if ( strpos( $block,
"\n" ) !==
false ) {
2480 $lines = explode(
"\n", $logBuffer );
2481 $logBuffer = array_pop(
$lines );
2490 foreach ( $pipes
as $pipe ) {
2497 $status = proc_get_status( $proc );
2500 if ( $logMsg !==
false ) {
2503 proc_close( $proc );
2504 } elseif (
$status[
'signaled'] ) {
2505 $logMsg =
"Exited with signal {$status['termsig']}";
2507 proc_close( $proc );
2510 $retval = proc_close( $proc );
2513 proc_close( $proc );
2516 $logMsg =
"Possibly missing executable file";
2518 $logMsg =
"Probably exited with signal " . (
$retval - 128 );
2522 if ( $logMsg !==
false ) {
2547 [
'duplicateStderr' =>
true,
'profileMethod' =>
wfGetCaller() ] );
2555 static $done =
false;
2561 putenv(
"LC_CTYPE=$wgShellLocale" );
2562 setlocale( LC_CTYPE, $wgShellLocale );
2583 if ( isset(
$options[
'wrapper'] ) ) {
2604 # This check may also protect against code injection in
2605 # case of broken installations.
2606 MediaWiki\suppressWarnings();
2607 $haveDiff3 = $wgDiff3 && file_exists( $wgDiff3 );
2608 MediaWiki\restoreWarnings();
2610 if ( !$haveDiff3 ) {
2611 wfDebug(
"diff3 not found\n" );
2615 # Make temporary files
2617 $oldtextFile = fopen( $oldtextName = tempnam( $td,
'merge-old-' ),
'w' );
2618 $mytextFile = fopen( $mytextName = tempnam( $td,
'merge-mine-' ),
'w' );
2619 $yourtextFile = fopen( $yourtextName = tempnam( $td,
'merge-your-' ),
'w' );
2621 # NOTE: diff3 issues a warning to stderr if any of the files does not end with
2622 # a newline character. To avoid this, we normalize the trailing whitespace before
2623 # creating the diff.
2625 fwrite( $oldtextFile, rtrim( $old ) .
"\n" );
2626 fclose( $oldtextFile );
2627 fwrite( $mytextFile, rtrim( $mine ) .
"\n" );
2628 fclose( $mytextFile );
2629 fwrite( $yourtextFile, rtrim( $yours ) .
"\n" );
2630 fclose( $yourtextFile );
2632 # Check for a conflict
2634 $oldtextName, $yourtextName );
2635 $handle = popen( $cmd,
'r' );
2637 if ( fgets( $handle, 1024 ) ) {
2646 $oldtextName, $yourtextName );
2647 $handle = popen( $cmd,
'r' );
2650 $data = fread( $handle, 8192 );
2651 if ( strlen( $data ) == 0 ) {
2657 unlink( $mytextName );
2658 unlink( $oldtextName );
2659 unlink( $yourtextName );
2661 if (
$result ===
'' && $old !==
'' && !$conflict ) {
2662 wfDebug(
"Unexpected null result from diff3. Command: $cmd\n" );
2679 function wfDiff( $before, $after, $params =
'-u' ) {
2680 if ( $before == $after ) {
2685 MediaWiki\suppressWarnings();
2686 $haveDiff = $wgDiff && file_exists( $wgDiff );
2687 MediaWiki\restoreWarnings();
2689 # This check may also protect against code injection in
2690 # case of broken installations.
2692 wfDebug(
"diff executable not found\n" );
2693 $diffs =
new Diff( explode(
"\n", $before ), explode(
"\n", $after ) );
2695 return $format->format( $diffs );
2698 # Make temporary files
2700 $oldtextFile = fopen( $oldtextName = tempnam( $td,
'merge-old-' ),
'w' );
2701 $newtextFile = fopen( $newtextName = tempnam( $td,
'merge-your-' ),
'w' );
2703 fwrite( $oldtextFile, $before );
2704 fclose( $oldtextFile );
2705 fwrite( $newtextFile, $after );
2706 fclose( $newtextFile );
2709 $cmd =
"$wgDiff " . $params .
' ' .
wfEscapeShellArg( $oldtextName, $newtextName );
2711 $h = popen( $cmd,
'r' );
2713 unlink( $oldtextName );
2714 unlink( $newtextName );
2715 throw new Exception( __METHOD__ .
'(): popen() failed' );
2721 $data = fread( $h, 8192 );
2722 if ( strlen( $data ) == 0 ) {
2730 unlink( $oldtextName );
2731 unlink( $newtextName );
2734 $diff_lines = explode(
"\n", $diff );
2735 if ( isset( $diff_lines[0] ) && strpos( $diff_lines[0],
'---' ) === 0 ) {
2736 unset( $diff_lines[0] );
2738 if ( isset( $diff_lines[1] ) && strpos( $diff_lines[1],
'+++' ) === 0 ) {
2739 unset( $diff_lines[1] );
2742 $diff = implode(
"\n", $diff_lines );
2763 $php_ver = PHP_VERSION;
2765 if ( version_compare( $php_ver, (
string)$req_ver,
'<' ) ) {
2766 throw new MWException(
"PHP $req_ver required--this is only $php_ver" );
2792 function wfUseMW( $req_ver ) {
2795 if ( version_compare( $wgVersion, (
string)$req_ver,
'<' ) ) {
2796 throw new MWException(
"MediaWiki $req_ver required--this is only $wgVersion" );
2813 if ( $suffix ==
'' ) {
2816 $encSuffix =
'(?:' . preg_quote( $suffix,
'#' ) .
')?';
2820 if ( preg_match(
"#([^/\\\\]*?){$encSuffix}[/\\\\]*$#",
$path,
$matches ) ) {
2838 $path = str_replace(
'/', DIRECTORY_SEPARATOR,
$path );
2839 $from = str_replace(
'/', DIRECTORY_SEPARATOR,
$from );
2845 $pieces = explode( DIRECTORY_SEPARATOR, dirname(
$path ) );
2846 $against = explode( DIRECTORY_SEPARATOR,
$from );
2848 if ( $pieces[0] !== $against[0] ) {
2855 while ( count( $pieces ) && count( $against )
2856 && $pieces[0] == $against[0] ) {
2857 array_shift( $pieces );
2858 array_shift( $against );
2862 while ( count( $against ) ) {
2863 array_unshift( $pieces,
'..' );
2864 array_shift( $against );
2869 return implode( DIRECTORY_SEPARATOR, $pieces );
2889 function wfBaseConvert( $input, $sourceBase, $destBase, $pad = 1,
2890 $lowercase =
true,
$engine =
'auto'
2892 return Wikimedia\base_convert( $input, $sourceBase, $destBase, $pad, $lowercase,
$engine );
2911 $session = SessionManager::getGlobalSession();
2912 $delay = $session->delaySave();
2914 $session->resetId();
2918 if ( session_id() !== $session->getId() ) {
2922 ScopedCallback::consume( $delay );
2938 session_id( $sessionId );
2941 $session = SessionManager::getGlobalSession();
2942 $session->persist();
2944 if ( session_id() !== $session->getId() ) {
2945 session_id( $session->getId() );
2947 MediaWiki\quietCall(
'session_start' );
2959 $file =
"$IP/serialized/$name";
2960 if ( file_exists( $file ) ) {
2961 $blob = file_get_contents( $file );
2976 return call_user_func_array(
2993 $args = array_slice( func_get_args(), 2 );
2994 $keyspace = $prefix ?
"$db-$prefix" : $db;
2995 return call_user_func_array(
2997 [ $keyspace,
$args ]
3013 return call_user_func_array(
3027 if ( $wgDBprefix ) {
3028 return "$wgDBname-$wgDBprefix";
3042 $bits = explode(
'-', $wiki, 2 );
3043 if ( count( $bits ) < 2 ) {
3074 function wfGetDB( $db, $groups = [], $wiki =
false ) {
3075 return wfGetLB( $wiki )->getConnection( $db, $groups, $wiki );
3087 function wfGetLB( $wiki =
false ) {
3088 if ( $wiki ===
false ) {
3089 return \MediaWiki\MediaWikiServices::getInstance()->getDBLoadBalancer();
3091 $factory = \MediaWiki\MediaWikiServices::getInstance()->getDBLoadBalancerFactory();
3092 return $factory->getMainLB( $wiki );
3104 return \MediaWiki\MediaWikiServices::getInstance()->getDBLoadBalancerFactory();
3152 function wfScript( $script =
'index' ) {
3154 if ( $script ===
'index' ) {
3156 } elseif ( $script ===
'load' ) {
3159 return "{$wgScriptPath}/{$script}.php";
3169 if ( isset( $_SERVER[
'SCRIPT_NAME'] ) ) {
3180 return $_SERVER[
'SCRIPT_NAME'];
3182 return $_SERVER[
'URL'];
3194 return $value ?
'true' :
'false';
3229 $ifWritesSince = null, $wiki =
false, $cluster =
false, $timeout = null
3231 if ( $timeout === null ) {
3232 $timeout = ( PHP_SAPI ===
'cli' ) ? 86400 : 10;
3235 if ( $cluster ===
'*' ) {
3238 } elseif ( $wiki ===
false ) {
3245 'cluster' => $cluster,
3246 'timeout' => $timeout,
3248 'ifWritesSince' => ( $ifWritesSince > 1e9 ) ? $ifWritesSince : null
3265 for ( $i = $seconds; $i >= 0; $i-- ) {
3266 if ( $i != $seconds ) {
3267 echo str_repeat(
"\x08", strlen( $i + 1 ) );
3288 $illegalFileChars = $wgIllegalFileChars ?
"|[" . $wgIllegalFileChars .
"]" :
'';
3289 $name = preg_replace(
3307 if ( $memlimit != -1 ) {
3309 if ( $conflimit == -1 ) {
3310 wfDebug(
"Removing PHP's memory limit\n" );
3311 MediaWiki\suppressWarnings();
3312 ini_set(
'memory_limit', $conflimit );
3313 MediaWiki\restoreWarnings();
3315 } elseif ( $conflimit > $memlimit ) {
3316 wfDebug(
"Raising PHP's memory limit to $conflimit bytes\n" );
3317 MediaWiki\suppressWarnings();
3318 ini_set(
'memory_limit', $conflimit );
3319 MediaWiki\restoreWarnings();
3335 $timeLimit = ini_get(
'max_execution_time' );
3337 if ( $timeLimit > 0 && $wgTransactionalTimeLimit > $timeLimit ) {
3338 set_time_limit( $wgTransactionalTimeLimit );
3341 ignore_user_abort(
true );
3354 $string = trim( $string );
3355 if ( $string ===
'' ) {
3358 $last = $string[strlen( $string ) - 1];
3359 $val = intval( $string );
3385 $codeSegment = explode(
'-',
$code );
3387 foreach ( $codeSegment
as $segNo => $seg ) {
3389 if ( $segNo > 0 && strtolower( $codeSegment[( $segNo - 1 )] ) ==
'x' ) {
3390 $codeBCP[$segNo] = strtolower( $seg );
3392 } elseif ( ( strlen( $seg ) == 2 ) && ( $segNo > 0 ) ) {
3393 $codeBCP[$segNo] = strtoupper( $seg );
3395 } elseif ( ( strlen( $seg ) == 4 ) && ( $segNo > 0 ) ) {
3396 $codeBCP[$segNo] = ucfirst( strtolower( $seg ) );
3399 $codeBCP[$segNo] = strtolower( $seg );
3402 $langCode = implode(
'-', $codeBCP );
3474 function wfUnpack( $format, $data, $length =
false ) {
3475 if ( $length !==
false ) {
3476 $realLen = strlen( $data );
3477 if ( $realLen < $length ) {
3478 throw new MWException(
"Tried to use wfUnpack on a "
3479 .
"string of length $realLen, but needed one "
3480 .
"of at least length $length."
3485 MediaWiki\suppressWarnings();
3486 $result = unpack( $format, $data );
3487 MediaWiki\restoreWarnings();
3491 throw new MWException(
"unpack could not unpack binary data" );
3511 # Handle redirects; callers almost always hit wfFindFile() anyway,
3512 # so just use that method because it has a fast process cache.
3516 # Run the extension hook
3523 $key =
wfMemcKey(
'bad-image-list', ( $blacklist === null ) ?
'default' : md5( $blacklist ) );
3524 $badImages =
$cache->get( $key );
3526 if ( $badImages ===
false ) {
3527 if ( $blacklist === null ) {
3528 $blacklist =
wfMessage(
'bad_image_list' )->inContentLanguage()->plain();
3530 # Build the list now
3532 $lines = explode(
"\n", $blacklist );
3535 if ( substr( $line, 0, 1 ) !==
'*' ) {
3541 if ( !preg_match_all(
'/\[\[:?(.*?)\]\]/', $line, $m ) ) {
3546 $imageDBkey =
false;
3547 foreach ( $m[1]
as $i => $titleText ) {
3549 if ( !is_null(
$title ) ) {
3551 $imageDBkey =
$title->getDBkey();
3553 $exceptions[
$title->getPrefixedDBkey()] =
true;
3558 if ( $imageDBkey !==
false ) {
3559 $badImages[$imageDBkey] = $exceptions;
3562 $cache->set( $key, $badImages, 60 );
3565 $contextKey = $contextTitle ? $contextTitle->getPrefixedDBkey() :
false;
3566 $bad = isset( $badImages[
$name] ) && !isset( $badImages[
$name][$contextKey] );
3580 Hooks::run(
'CanIPUseHTTPS', [ $ip, &$canDo ] );
3592 $infinityValues = [
'infinite',
'indefinite',
'infinity',
'never' ];
3593 return in_array( $str, $infinityValues );
3613 $multipliers = [ 1 ];
3614 if ( $wgResponsiveImages ) {
3617 $multipliers[] = 1.5;
3622 if ( !
$handler || !isset( $params[
'width'] ) ) {
3627 if ( isset( $params[
'page'] ) ) {
3628 $basicParams[
'page'] = $params[
'page'];
3634 foreach ( $multipliers
as $multiplier ) {
3635 $thumbLimits = array_merge( $thumbLimits, array_map(
3636 function ( $width )
use ( $multiplier ) {
3637 return round( $width * $multiplier );
3640 $imageLimits = array_merge( $imageLimits, array_map(
3641 function ( $pair )
use ( $multiplier ) {
3643 round( $pair[0] * $multiplier ),
3644 round( $pair[1] * $multiplier ),
3651 if ( in_array( $params[
'width'], $thumbLimits ) ) {
3652 $normalParams = $basicParams + [
'width' => $params[
'width'] ];
3654 $handler->normaliseParams( $file, $normalParams );
3658 foreach ( $imageLimits
as $pair ) {
3659 $normalParams = $basicParams + [
'width' => $pair[0],
'height' => $pair[1] ];
3662 $handler->normaliseParams( $file, $normalParams );
3664 if ( $normalParams[
'width'] == $params[
'width'] ) {
3675 foreach ( $params
as $key =>
$value ) {
3676 if ( !isset( $normalParams[$key] ) || $normalParams[$key] !=
$value ) {
3698 foreach ( $baseArray
as $name => &$groupVal ) {
3699 if ( isset( $newValues[
$name] ) ) {
3700 $groupVal += $newValues[
$name];
3704 $baseArray += $newValues;
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
wfGetDB($db, $groups=[], $wiki=false)
Get a Database object.
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
wfPercent($nr, $acc=2, $round=true)
the array() calling protocol came about after MediaWiki 1.4rc1.
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
wfWaitForSlaves($ifWritesSince=null, $wiki=false, $cluster=false, $timeout=null)
Waits for the replica DBs to catch up to the master position.
wfCanIPUseHTTPS($ip)
Determine whether the client at a given source IP is likely to be able to access the wiki via HTTPS...
$wgScript
The URL path to index.php.
A statsd client that applies the sampling rate to the data items before sending them.
$wgVersion
MediaWiki version number.
wfScript($script= 'index')
Get the path to a specified script file, respecting file extensions; this is a wrapper around $wgScri...
static warning($msg, $callerOffset=1, $level=E_USER_NOTICE, $log= 'auto')
Adds a warning entry to the log.
wfIsHHVM()
Check if we are running under HHVM.
wfForeignMemcKey($db, $prefix)
Make a cache key for a foreign DB.
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
wfShorthandToInteger($string= '', $default=-1)
Converts shorthand byte notation to integer form.
Apache License January AND DISTRIBUTION Definitions License shall mean the terms and conditions for use
wfMkdirParents($dir, $mode=null, $caller=null)
Make directory, and make all parent directories if they don't exist.
if(!$wgDBerrorLogTZ) $wgRequest
wfDebugMem($exact=false)
Send a line giving PHP memory usage.
div flags Integer display flags(NO_ACTION_LINK, NO_EXTRA_USER_LINKS) 'LogException'returning false will NOT prevent logging $e
static instance()
Singleton.
static header($code)
Output an HTTP status code header.
$wgInternalServer
Internal server name as known to CDN, if different.
wfHostname()
Fetch server name for use in error reporting etc.
mimeTypeMatch($type, $avail)
Checks if a given MIME type matches any of the keys in the given array.
static getInstance($id)
Get a cached instance of the specified type of cache object.
wfRelativePath($path, $from)
Generate a relative path name to the given file.
wfFormatStackFrame($frame)
Return a string representation of frame.
wfDebugBacktrace($limit=0)
Safety wrapper for debug_backtrace().
wfRunHooks($event, array $args=[], $deprecatedVersion=null)
Call hook functions defined in $wgHooks.
wfBacktrace($raw=null)
Get a debug backtrace as a string.
wfLogDBError($text, array $context=[])
Log for database errors.
wfHttpError($code, $label, $desc)
Provide a simple HTTP error.
wfAppendToArrayIfNotDefault($key, $value, $default, &$changed)
Appends to second array if $value differs from that in $default.
wfMessageFallback()
This function accepts multiple message keys and returns a message instance for the first message whic...
wfMakeUrlIndexes($url)
Make URL indexes, appropriate for the el_index field of externallinks.
static getLocalClusterInstance()
Get the main cluster-local cache object.
wfUrlProtocolsWithoutProtRel()
Like wfUrlProtocols(), but excludes '//' from the protocol list.
static now($style=TS_MW)
Get the current time in the given format.
it s the revision text itself In either if gzip is the revision text is gzipped $flags
$wgDisableOutputCompression
Disable output compression (enabled by default if zlib is available)
wfIsBadImage($name, $contextTitle=false, $blacklist=null)
Determine if an image exists on the 'bad image list'.
wfObjectToArray($objOrArray, $recursive=true)
Recursively converts the parameter (an object) to an array with the same data.
wfLoadExtension($ext, $path=null)
Load an extension.
wfShellExec($cmd, &$retval=null, $environ=[], $limits=[], $options=[])
Execute a shell command, with time and memory limits mirrored from the PHP configuration if supported...
wfUrlencode($s)
We want some things to be included as literal characters in our title URLs for prettiness, which urlencode encodes by default.
static newFromText($text, $defaultNamespace=NS_MAIN)
Create a new Title from text, such as what one would find in a link.
$wgTmpDirectory
The local filesystem path to a temporary directory.
when a variable name is used in a it is silently declared as a new local masking the global
wfExpandUrl($url, $defaultProto=PROTO_CURRENT)
Expand a potentially local URL to a fully-qualified URL.
wfBoolToStr($value)
Convenience function converts boolean values into "true" or "false" (string) values.
wfIsWindows()
Check if the operating system is Windows.
wfReportTime()
Returns a script tag that stores the amount of time it took MediaWiki to handle the request in millis...
wfLocalFile($title)
Get an object referring to a locally registered file.
wfExpandIRI($url)
Take a URL, make sure it's expanded to fully qualified, and replace any encoded non-ASCII Unicode cha...
wfStripIllegalFilenameChars($name)
Replace all invalid characters with '-'.
wfGetMessageCacheStorage()
Get the cache object used by the message cache.
getTitle()
Return the associated title object.
wfRandomString($length=32)
Get a random string containing a number of pseudo-random hex characters.
static makeVariablesScript($data)
wfNegotiateType($cprefs, $sprefs)
Returns the 'best' match between a client's requested internet media types and the server's list of a...
wfArrayDiff2($a, $b)
Like array_diff( $a, $b ) except that it works with two-dimensional arrays.
wfDebug($text, $dest= 'all', array $context=[])
Sends a line to the debug log if enabled or, optionally, to a comment in output.
wfGetParserCacheStorage()
Get the cache object used by the parser cache.
static fetchLanguageNames($inLanguage=null, $include= 'mw')
Get an array of language names, indexed by code.
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
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 '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. 'LanguageGetMagic':DEPRECATED!Use $magicWords in a file listed in $wgExtensionMessagesFiles instead.Use this to define synonyms of magic words depending of the language &$magicExtensions:associative array of magic words synonyms $lang:language code(string) '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 'LanguageGetSpecialPageAliases':DEPRECATED!Use $specialPageAliases in a file listed in $wgExtensionMessagesFiles instead.Use to define aliases of special pages names depending of the language &$specialPageAliases:associative array of magic words synonyms $lang:language code(string) '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:Associative array mapping language codes to prefixed links of the form"language:title".&$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!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
const TS_UNIX
Unix time - the number of seconds since 1970-01-01 00:00:00 UTC.
wfGlobalCacheKey()
Make a cache key with database-agnostic prefix.
static getUsableTempDirectory()
wfTimestamp($outputtype=TS_UNIX, $ts=0)
Get a timestamp string in one of various formats.
wfMsgReplaceArgs($message, $args)
Replace message parameter keys on the given formatted output.
$wgLanguageCode
Site language code.
wfCountDown($seconds)
Count down from $seconds to zero on the terminal, with a one-second pause between showing each number...
$wgExtensionDirectory
Filesystem extensions directory.
wfCgiToArray($query)
This is the logical opposite of wfArrayToCgi(): it accepts a query string as its argument and returns...
wfDebugLog($logGroup, $text, $dest= 'all', array $context=[])
Send a line to a supplementary debug log file, if configured, or main debug log if not...
wfLoadExtensions(array $exts)
Load multiple extensions at once.
wfIsDebugRawPage()
Returns true if debug logging should be suppressed if $wgDebugRawPage = false.
global $wgCommandLineMode
wfConfiguredReadOnlyReason()
Get the value of $wgReadOnly or the contents of $wgReadOnlyFile.
wfDiff($before, $after, $params= '-u')
Returns unified plain-text diff of two texts.
wfResetOutputBuffers($resetGzipEncoding=true)
Clear away any user-level output buffers, discarding contents.
wfGetLB($wiki=false)
Get a load balancer object.
Exception class for replica DB wait timeouts.
wfEscapeWikiText($text)
Escapes the given text so that it may be output using addWikiText() without any linking, formatting, etc.
wfReadOnly()
Check whether the wiki is in read-only mode.
$wgParserCacheType
The cache type for storing article HTML.
wfSetBit(&$dest, $bit, $state=true)
As for wfSetVar except setting a bit.
wfAssembleUrl($urlParts)
This function will reassemble a URL parsed with wfParseURL.
wfTempDir()
Tries to get the system directory for temporary files.
const SHELL_MAX_ARG_STRLEN
static getMain()
Static methods.
wfMergeErrorArrays()
Merge arrays in the style of getUserPermissionsErrors, with duplicate removal e.g.
static deprecated($function, $version=false, $component=false, $callerOffset=2)
Show a warning that $function is deprecated.
wfGetCache($cacheType)
Get a specific cache object.
wfAppendQuery($url, $query)
Append a query string to an existing URL, which may or may not already have query string parameters a...
$wgIllegalFileChars
Additional characters that are not allowed in filenames.
wfShellWikiCmd($script, array $parameters=[], array $options=[])
Generate a shell-escaped command line string to run a MediaWiki cli script.
wfWarn($msg, $callerOffset=1, $level=E_USER_NOTICE)
Send a warning either to the debug log or in a PHP error depending on $wgDevelopmentWarnings.
getHandler()
Get a MediaHandler instance for this file.
wfIniGetBool($setting)
Safety wrapper around ini_get() for boolean settings.
this hook is for auditing only RecentChangesLinked and Watchlist RecentChangesLinked and Watchlist e g Watchlist removed from all revisions and log entries to which it was applied This gives extensions a chance to take it off their books as the deletion has already been partly carried out by this point or something similar the user will be unable to create the tag set and then return false from the hook function Ensure you consume the ChangeTagAfterDelete hook to carry out custom deletion actions as context called by AbstractContent::getParserOutput May be used to override the normal model specific rendering of page content as context as context $options
wfClientAcceptsGzip($force=false)
static singleton()
Get a RepoGroup instance.
static isStoragePath($path)
Check if a given path is a "mwstore://" path.
$wgMessageCacheType
The cache type for storing the contents of the MediaWiki namespace.
$wgMiserMode
Disable database-intensive features.
wfMatchesDomainList($url, $domains)
Check whether a given URL has a domain that occurs in a given set of domains.
wfTimestampNow()
Convenience function; returns MediaWiki timestamp for the present time.
wfErrorLog($text, $file, array $context=[])
Log to a file without getting "file size exceeded" signals.
$wgImageLimits
Limit images on image description pages to a user-selectable limit.
Class representing a 'diff' between two sequences of strings.
wfLoadSkin($skin, $path=null)
Load a skin.
$wgThumbLimits
Adjust thumbnails on image pages according to a user setting.
wfIsInfinity($str)
Determine input string is represents as infinity.
CACHE_MEMCACHED $wgMainCacheType
wfDeprecated($function, $version=false, $component=false, $callerOffset=2)
Throws a warning that $function is deprecated.
const TS_MW
MediaWiki concatenated string timestamp (YYYYMMDDHHMMSS)
wfIncrStats($key, $count=1)
Increment a statistics counter.
wfExpandIRI_callback($matches)
Private callback for wfExpandIRI.
wfBCP47($code)
Get the normalised IETF language tag See unit test for examples.
namespace and then decline to actually register it file or subcat img or subcat $title
wfLoadSkins(array $skins)
Load multiple skins at once.
static run($event, array $args=[], $deprecatedVersion=null)
Call hook functions defined in Hooks::register and $wgHooks.
wfQueriesMustScale()
Should low-performance queries be disabled?
wfWikiID()
Get an ASCII string identifying this wiki This is used as a prefix in memcached keys.
wfShowingResults($offset, $limit)
wfInitShellLocale()
Workaround for http://bugs.php.net/bug.php?id=45132 escapeshellarg() destroys non-ASCII characters if...
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
wfVarDump($var)
A wrapper around the PHP function var_export().
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 modifiable & $code
wfSuppressWarnings($end=false)
Reference-counted warning suppression.
wfMerge($old, $mine, $yours, &$result)
wfMerge attempts to merge differences between three texts.
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 local account $user
the value to return A Title object or null for latest all implement SearchIndexField $engine
wfUsePHP($req_ver)
This function works like "use VERSION" in Perl, the program will die with a backtrace if the current ...
wfShellExecDisabled()
Check if wfShellExec() is effectively disabled via php.ini config.
this hook is for auditing only RecentChangesLinked and Watchlist RecentChangesLinked and Watchlist e g Watchlist removed from all revisions and log entries to which it was applied This gives extensions a chance to take it off their books as the deletion has already been partly carried out by this point or something similar the user will be unable to create the tag set and then return false from the hook function Ensure you consume the ChangeTagAfterDelete hook to carry out custom deletion actions as context called by AbstractContent::getParserOutput May be used to override the normal model specific rendering of page content as context as context the output can only depend on parameters provided to this hook not on global state indicating whether full HTML should be generated If generation of HTML may be but other information should still be present in the ParserOutput object & $output
wfGetAllCallers($limit=3)
Return a string consisting of callers in the stack.
wfArrayInsertAfter(array $array, array $insert, $after)
Insert array into another array after the specified KEY
wfUrlProtocols($includeProtocolRelative=true)
Returns a regular expression of url protocols.
$wgMemoryLimit
The minimum amount of memory that MediaWiki "needs"; MediaWiki will try to raise PHP's memory limit i...
wfRemoveDotSegments($urlPath)
Remove all dot-segments in the provided URL path.
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...
wfGetLBFactory()
Get the load balancer factory object.
wfBaseName($path, $suffix= '')
Return the final portion of a pathname.
wfBaseConvert($input, $sourceBase, $destBase, $pad=1, $lowercase=true, $engine= 'auto')
Convert an arbitrarily-long digit string from one numeric base to another, optionally zero-padding to...
wfRandom()
Get a random decimal value between 0 and 1, in a way not likely to give duplicate values for any real...
error also a ContextSource you ll probably need to make sure the header is varied on $request
wfReadOnlyReason()
Check if the site is in read-only mode and return the message if so.
wfUnpack($format, $data, $length=false)
Wrapper around php's unpack.
wfUseMW($req_ver)
This function works like "use VERSION" in Perl except it checks the version of MediaWiki, the program will die with a backtrace if the current version of MediaWiki is less than the version provided.
$wgScriptPath
The path we should point to.
static getLocalServerInstance($fallback=CACHE_NONE)
Factory function for CACHE_ACCEL (referenced from DefaultSettings.php)
wfGetMainCache()
Get the main cache object.
wfArrayToCgi($array1, $array2=null, $prefix= '')
This function takes one or two arrays as input, and returns a CGI-style string, e.g.
$wgDBprefix
Table name prefix.
$wgStyleDirectory
Filesystem stylesheets directory.
wfRecursiveRemoveDir($dir)
Remove a directory and all its content.
wfMemoryLimit()
Set PHP's memory limit to the larger of php.ini or $wgMemoryLimit.
wfClearOutputBuffers()
More legible than passing a 'false' parameter to wfResetOutputBuffers():
$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.
this hook is for auditing only RecentChangesLinked and Watchlist RecentChangesLinked and Watchlist e g Watchlist removed from all revisions and log entries to which it was applied This gives extensions a chance to take it off their books as the deletion has already been partly carried out by this point or something similar the user will be unable to create the tag set and then return false from the hook function Ensure you consume the ChangeTagAfterDelete hook to carry out custom deletion actions as context called by AbstractContent::getParserOutput May be used to override the normal model specific rendering of page content as context as context the output can only depend on parameters provided to this hook not on global state indicating whether full HTML should be generated If generation of HTML may be but other information should still be present in the ParserOutput object to manipulate or replace but no entry for that model exists in $wgContentHandlers if desired 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 inclusive $limit
this class mediates it Skin Encapsulates a look and feel for the wiki All of the functions that render HTML and make choices about how to render it are here and are called from various other places when and is meant to be subclassed with other skins that may override some of its functions The User object contains a reference to a and so rather than having a global skin object we just rely on the global User and get the skin with $wgUser and also has some character encoding functions and other locale stuff The current user interface language is instantiated as and the local content language as $wgContLang
wfSetupSession($sessionId=false)
Initialise php session.
this hook is for auditing only RecentChangesLinked and Watchlist RecentChangesLinked and Watchlist e g Watchlist removed from all revisions and log entries to which it was applied This gives extensions a chance to take it off their books as the deletion has already been partly carried out by this point or something similar the user will be unable to create the tag set $status
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
wfEscapeShellArg()
Version of escapeshellarg() that works better on Windows.
static convert($style=TS_UNIX, $ts)
Convert a timestamp string to a given format.
static legalChars()
Get a regex character class describing the legal characters in a link.
wfAcceptToPrefs($accept, $def= '*/*')
Converts an Accept-* header into an array mapping string values to quality factors.
$wgServer
URL of the server.
wfMemcKey()
Make a cache key for the local wiki.
wfSplitWikiID($wiki)
Split a wiki ID into DB name and table prefix.
wfLogWarning($msg, $callerOffset=1, $level=E_USER_WARNING)
Send a warning as a PHP error and the debug log.
wfResetSessionID()
Reset the session id.
wfGetNull()
Get a platform-independent path to the null file, e.g.
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 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
static logException($e)
Log an exception to the exception log (if enabled).
controlled by $wgMainCacheType controlled by $wgParserCacheType controlled by $wgMessageCacheType If you set CACHE_NONE to one of the three control default value for MediaWiki still create a but requests to it are no ops and we always fall through to the database If the cache daemon can t be it should also disable itself fairly smoothly By $wgMemc is used but when it is $parserMemc or $messageMemc this is mentioned $wgDBname
wfTimestampOrNull($outputtype=TS_UNIX, $ts=null)
Return a formatted timestamp, or null if input is null.
float $wgRequestTime
Request start time as fractional seconds since epoch.
wfParseUrl($url)
parse_url() work-alike, but non-broken.
static factory($code)
Get a cached or new language object for a given language code.
wfArrayPlus2d(array $baseArray, array $newValues)
Merges two (possibly) 2 dimensional arrays into the target array ($baseArray).
wfShellExecWithStderr($cmd, &$retval=null, $environ=[], $limits=[])
Execute a shell command, returning both stdout and stderr.
Implements some public methods and some protected utility functions which are required by multiple ch...
wfGetPrecompiledData($name)
Get an object from the precompiled serialized directory.
$wgResponsiveImages
Generate and use thumbnails suitable for screens with 1.5 and 2.0 pixel densities.
wfMessage($key)
This is the function for getting translated interface messages.
$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.
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 local account incomplete not yet checked for validity & $retval
wfFindFile($title, $options=[])
Find a file.
do that in ParserLimitReportFormat instead use this to modify the parameters of the image and a DIV can begin in one section and end in another Make sure your code can handle that case gracefully See the EditSectionClearerLink extension for an example zero but section is usually empty its values are the globals values before the output is cached one of or reset my talk my contributions etc etc otherwise the built in rate limiting checks are if enabled allows for interception of redirect as a string mapping parameter names to values & $type
wfGetCaller($level=2)
Get the name of the function which called this function wfGetCaller( 1 ) is the function with the wfG...
see documentation in includes Linker php for Linker::makeImageLink & $time
wfGetLangObj($langcode=false)
Return a Language object from $langcode.
wfGetScriptUrl()
Get the script URL.
$wgTransactionalTimeLimit
The minimum amount of time that MediaWiki needs for "slow" write request, particularly ones with mult...
Allows to change the fields on the form that will be generated $name