MediaWiki REL1_32
ParserOptions.php
Go to the documentation of this file.
1<?php
25use Wikimedia\ScopedCallback;
26
43
50
56 private static $defaults = null;
57
62 private static $lazyOptions = [
63 'dateformat' => [ __CLASS__, 'initDateFormat' ],
64 'speculativeRevId' => [ __CLASS__, 'initSpeculativeRevId' ],
65 ];
66
71 private static $inCacheKey = [
72 'dateformat' => true,
73 'numberheadings' => true,
74 'thumbsize' => true,
75 'stubthreshold' => true,
76 'printable' => true,
77 'userlang' => true,
78 ];
79
84 private $options;
85
91 private $mTimestamp;
92
98 private $mUser;
99
105 private $onAccessCallback = null;
106
113 private $redirectTarget = null;
114
118 private $mExtraKey = '';
119
131 public function getOption( $name ) {
132 if ( !array_key_exists( $name, $this->options ) ) {
133 throw new InvalidArgumentException( "Unknown parser option $name" );
134 }
135
136 if ( isset( self::$lazyOptions[$name] ) && $this->options[$name] === null ) {
137 $this->options[$name] = call_user_func( self::$lazyOptions[$name], $this, $name );
138 }
139 if ( !empty( self::$inCacheKey[$name] ) ) {
140 $this->optionUsed( $name );
141 }
142 return $this->options[$name];
143 }
144
153 public function setOption( $name, $value ) {
154 if ( !array_key_exists( $name, $this->options ) ) {
155 throw new InvalidArgumentException( "Unknown parser option $name" );
156 }
157 $old = $this->options[$name];
158 $this->options[$name] = $value;
159 return $old;
160 }
161
170 protected function setOptionLegacy( $name, $value ) {
171 if ( !array_key_exists( $name, $this->options ) ) {
172 throw new InvalidArgumentException( "Unknown parser option $name" );
173 }
174 return wfSetVar( $this->options[$name], $value );
175 }
176
185 public function getInterwikiMagic() {
186 return $this->getOption( 'interwikiMagic' );
187 }
188
194 public function setInterwikiMagic( $x ) {
195 return $this->setOptionLegacy( 'interwikiMagic', $x );
196 }
197
202 public function getAllowExternalImages() {
203 return $this->getOption( 'allowExternalImages' );
204 }
205
211 public function setAllowExternalImages( $x ) {
212 return $this->setOptionLegacy( 'allowExternalImages', $x );
213 }
214
222 public function getAllowExternalImagesFrom() {
223 return $this->getOption( 'allowExternalImagesFrom' );
224 }
225
234 public function setAllowExternalImagesFrom( $x ) {
235 return $this->setOptionLegacy( 'allowExternalImagesFrom', $x );
236 }
237
242 public function getEnableImageWhitelist() {
243 return $this->getOption( 'enableImageWhitelist' );
244 }
245
251 public function setEnableImageWhitelist( $x ) {
252 return $this->setOptionLegacy( 'enableImageWhitelist', $x );
253 }
254
259 public function getNumberHeadings() {
260 return $this->getOption( 'numberheadings' );
261 }
262
268 public function setNumberHeadings( $x ) {
269 return $this->setOptionLegacy( 'numberheadings', $x );
270 }
271
276 public function getAllowSpecialInclusion() {
277 return $this->getOption( 'allowSpecialInclusion' );
278 }
279
285 public function setAllowSpecialInclusion( $x ) {
286 return $this->setOptionLegacy( 'allowSpecialInclusion', $x );
287 }
288
293 public function getTidy() {
294 return $this->getOption( 'tidy' );
295 }
296
302 public function setTidy( $x ) {
303 return $this->setOptionLegacy( 'tidy', $x );
304 }
305
310 public function getInterfaceMessage() {
311 return $this->getOption( 'interfaceMessage' );
312 }
313
319 public function setInterfaceMessage( $x ) {
320 return $this->setOptionLegacy( 'interfaceMessage', $x );
321 }
322
327 public function getTargetLanguage() {
328 return $this->getOption( 'targetLanguage' );
329 }
330
336 public function setTargetLanguage( $x ) {
337 return $this->setOption( 'targetLanguage', $x );
338 }
339
344 public function getMaxIncludeSize() {
345 return $this->getOption( 'maxIncludeSize' );
346 }
347
353 public function setMaxIncludeSize( $x ) {
354 return $this->setOptionLegacy( 'maxIncludeSize', $x );
355 }
356
361 public function getMaxPPNodeCount() {
362 return $this->getOption( 'maxPPNodeCount' );
363 }
364
370 public function setMaxPPNodeCount( $x ) {
371 return $this->setOptionLegacy( 'maxPPNodeCount', $x );
372 }
373
378 public function getMaxGeneratedPPNodeCount() {
379 return $this->getOption( 'maxGeneratedPPNodeCount' );
380 }
381
387 public function setMaxGeneratedPPNodeCount( $x ) {
388 return $this->setOptionLegacy( 'maxGeneratedPPNodeCount', $x );
389 }
390
395 public function getMaxPPExpandDepth() {
396 return $this->getOption( 'maxPPExpandDepth' );
397 }
398
403 public function getMaxTemplateDepth() {
404 return $this->getOption( 'maxTemplateDepth' );
405 }
406
412 public function setMaxTemplateDepth( $x ) {
413 return $this->setOptionLegacy( 'maxTemplateDepth', $x );
414 }
415
422 return $this->getOption( 'expensiveParserFunctionLimit' );
423 }
424
431 public function setExpensiveParserFunctionLimit( $x ) {
432 return $this->setOptionLegacy( 'expensiveParserFunctionLimit', $x );
433 }
434
440 public function getRemoveComments() {
441 return $this->getOption( 'removeComments' );
442 }
443
450 public function setRemoveComments( $x ) {
451 return $this->setOptionLegacy( 'removeComments', $x );
452 }
453
458 public function getEnableLimitReport() {
459 return $this->getOption( 'enableLimitReport' );
460 }
461
467 public function enableLimitReport( $x = true ) {
468 return $this->setOptionLegacy( 'enableLimitReport', $x );
469 }
470
476 public function getCleanSignatures() {
477 return $this->getOption( 'cleanSignatures' );
478 }
479
486 public function setCleanSignatures( $x ) {
487 return $this->setOptionLegacy( 'cleanSignatures', $x );
488 }
489
494 public function getExternalLinkTarget() {
495 return $this->getOption( 'externalLinkTarget' );
496 }
497
503 public function setExternalLinkTarget( $x ) {
504 return $this->setOptionLegacy( 'externalLinkTarget', $x );
505 }
506
511 public function getDisableContentConversion() {
512 return $this->getOption( 'disableContentConversion' );
513 }
514
520 public function disableContentConversion( $x = true ) {
521 return $this->setOptionLegacy( 'disableContentConversion', $x );
522 }
523
528 public function getDisableTitleConversion() {
529 return $this->getOption( 'disableTitleConversion' );
530 }
531
537 public function disableTitleConversion( $x = true ) {
538 return $this->setOptionLegacy( 'disableTitleConversion', $x );
539 }
540
545 public function getThumbSize() {
546 return $this->getOption( 'thumbsize' );
547 }
548
554 public function setThumbSize( $x ) {
555 return $this->setOptionLegacy( 'thumbsize', $x );
556 }
557
562 public function getStubThreshold() {
563 return $this->getOption( 'stubthreshold' );
564 }
565
571 public function setStubThreshold( $x ) {
572 return $this->setOptionLegacy( 'stubthreshold', $x );
573 }
574
579 public function getIsPreview() {
580 return $this->getOption( 'isPreview' );
581 }
582
588 public function setIsPreview( $x ) {
589 return $this->setOptionLegacy( 'isPreview', $x );
590 }
591
596 public function getIsSectionPreview() {
597 return $this->getOption( 'isSectionPreview' );
598 }
599
605 public function setIsSectionPreview( $x ) {
606 return $this->setOptionLegacy( 'isSectionPreview', $x );
607 }
608
613 public function getIsPrintable() {
614 return $this->getOption( 'printable' );
615 }
616
622 public function setIsPrintable( $x ) {
623 return $this->setOptionLegacy( 'printable', $x );
624 }
625
630 public function getPreSaveTransform() {
631 return $this->getOption( 'preSaveTransform' );
632 }
633
639 public function setPreSaveTransform( $x ) {
640 return $this->setOptionLegacy( 'preSaveTransform', $x );
641 }
642
647 public function getDateFormat() {
648 return $this->getOption( 'dateformat' );
649 }
650
654 private static function initDateFormat( $popt ) {
655 return $popt->mUser->getDatePreference();
656 }
657
663 public function setDateFormat( $x ) {
664 return $this->setOptionLegacy( 'dateformat', $x );
665 }
666
684 public function getUserLangObj() {
685 return $this->getOption( 'userlang' );
686 }
687
700 public function getUserLang() {
701 return $this->getUserLangObj()->getCode();
702 }
703
709 public function setUserLang( $x ) {
710 if ( is_string( $x ) ) {
711 $x = Language::factory( $x );
712 }
713
714 return $this->setOptionLegacy( 'userlang', $x );
715 }
716
722 public function getMagicISBNLinks() {
723 return $this->getOption( 'magicISBNLinks' );
724 }
725
731 public function getMagicPMIDLinks() {
732 return $this->getOption( 'magicPMIDLinks' );
733 }
739 public function getMagicRFCLinks() {
740 return $this->getOption( 'magicRFCLinks' );
741 }
742
757 public function getAllowUnsafeRawHtml() {
758 return $this->getOption( 'allowUnsafeRawHtml' );
759 }
760
769 public function setAllowUnsafeRawHtml( $x ) {
770 return $this->setOptionLegacy( 'allowUnsafeRawHtml', $x );
771 }
772
778 public function getWrapOutputClass() {
779 return $this->getOption( 'wrapclass' );
780 }
781
789 public function setWrapOutputClass( $className ) {
790 if ( $className === true ) { // DWIM, they probably want the default class name
791 $className = 'mw-parser-output';
792 }
793 if ( $className === false ) {
794 wfDeprecated( __METHOD__ . '( false )', '1.31' );
795 }
796 return $this->setOption( 'wrapclass', $className );
797 }
798
804 public function getCurrentRevisionCallback() {
805 return $this->getOption( 'currentRevisionCallback' );
806 }
807
814 public function setCurrentRevisionCallback( $x ) {
815 return $this->setOptionLegacy( 'currentRevisionCallback', $x );
816 }
817
822 public function getTemplateCallback() {
823 return $this->getOption( 'templateCallback' );
824 }
825
831 public function setTemplateCallback( $x ) {
832 return $this->setOptionLegacy( 'templateCallback', $x );
833 }
834
845 public function getSpeculativeRevId() {
846 return $this->getOption( 'speculativeRevId' );
847 }
848
855 private static function initSpeculativeRevId( ParserOptions $popt ) {
856 $cb = $popt->getOption( 'speculativeRevIdCallback' );
857 $id = $cb ? $cb() : null;
858
859 // returning null would result in this being re-called every access
860 return $id ?? false;
861 }
862
869 public function getSpeculativeRevIdCallback() {
870 return $this->getOption( 'speculativeRevIdCallback' );
871 }
872
879 public function setSpeculativeRevIdCallback( $x ) {
880 $this->setOption( 'speculativeRevId', null ); // reset
881 return $this->setOptionLegacy( 'speculativeRevIdCallback', $x );
882 }
883
890 public function getTimestamp() {
891 if ( !isset( $this->mTimestamp ) ) {
892 $this->mTimestamp = wfTimestampNow();
893 }
894 return $this->mTimestamp;
895 }
896
902 public function setTimestamp( $x ) {
903 return wfSetVar( $this->mTimestamp, $x );
904 }
905
911 public function getEditSection() {
912 wfDeprecated( __METHOD__, '1.31' );
913 return true;
914 }
915
922 public function setEditSection( $x ) {
923 wfDeprecated( __METHOD__, '1.31' );
924 return true;
925 }
926
937 function setRedirectTarget( $title ) {
938 $this->redirectTarget = $title;
939 }
940
947 function getRedirectTarget() {
948 return $this->redirectTarget;
949 }
950
957 public function addExtraKey( $key ) {
958 $this->mExtraKey .= '!' . $key;
959 }
960
965 public function getUser() {
966 return $this->mUser;
967 }
968
975 public function __construct( $user = null, $lang = null ) {
976 if ( $user === null ) {
977 global $wgUser;
978 if ( $wgUser === null ) {
979 $user = new User;
980 } else {
981 $user = $wgUser;
982 }
983 }
984 if ( $lang === null ) {
985 global $wgLang;
987 $wgLang->_unstub();
988 }
989 $lang = $wgLang;
990 }
991 $this->initialiseFromUser( $user, $lang );
992 }
993
1001 public static function newFromAnon() {
1002 return new ParserOptions( new User,
1003 MediaWikiServices::getInstance()->getContentLanguage() );
1004 }
1005
1015 public static function newFromUser( $user ) {
1016 return new ParserOptions( $user );
1017 }
1018
1028 public static function newFromUserAndLang( User $user, Language $lang ) {
1029 return new ParserOptions( $user, $lang );
1030 }
1031
1040 public static function newFromContext( IContextSource $context ) {
1041 return new ParserOptions( $context->getUser(), $context->getLanguage() );
1042 }
1043
1061 public static function newCanonical( $context = null, $userLang = null ) {
1062 if ( $context instanceof IContextSource ) {
1063 $ret = self::newFromContext( $context );
1064 } elseif ( $context === 'canonical' ) {
1065 $ret = self::newFromAnon();
1066 } elseif ( $context instanceof User || $context === null ) {
1067 $ret = new self( $context, $userLang );
1068 } else {
1069 throw new InvalidArgumentException(
1070 '$context must be an IContextSource, the string "canonical", a User, or null'
1071 );
1072 }
1073
1074 foreach ( self::getCanonicalOverrides() as $k => $v ) {
1075 $ret->setOption( $k, $v );
1076 }
1077 return $ret;
1078 }
1079
1089 private static function getDefaults() {
1096
1097 if ( self::$defaults === null ) {
1098 // *UPDATE* ParserOptions::matches() if any of this changes as needed
1099 self::$defaults = [
1100 'dateformat' => null,
1101 'tidy' => false,
1102 'interfaceMessage' => false,
1103 'targetLanguage' => null,
1104 'removeComments' => true,
1105 'enableLimitReport' => false,
1106 'preSaveTransform' => true,
1107 'isPreview' => false,
1108 'isSectionPreview' => false,
1109 'printable' => false,
1110 'allowUnsafeRawHtml' => true,
1111 'wrapclass' => 'mw-parser-output',
1112 'currentRevisionCallback' => [ Parser::class, 'statelessFetchRevision' ],
1113 'templateCallback' => [ Parser::class, 'statelessFetchTemplate' ],
1114 'speculativeRevIdCallback' => null,
1115 'speculativeRevId' => null,
1116 ];
1117
1118 Hooks::run( 'ParserOptionsRegister', [
1119 &self::$defaults,
1120 &self::$inCacheKey,
1121 &self::$lazyOptions,
1122 ] );
1123
1124 ksort( self::$inCacheKey );
1125 }
1126
1127 // Unit tests depend on being able to modify the globals at will
1128 return self::$defaults + [
1129 'interwikiMagic' => $wgInterwikiMagic,
1130 'allowExternalImages' => $wgAllowExternalImages,
1131 'allowExternalImagesFrom' => $wgAllowExternalImagesFrom,
1132 'enableImageWhitelist' => $wgEnableImageWhitelist,
1133 'allowSpecialInclusion' => $wgAllowSpecialInclusion,
1134 'maxIncludeSize' => $wgMaxArticleSize * 1024,
1135 'maxPPNodeCount' => $wgMaxPPNodeCount,
1136 'maxGeneratedPPNodeCount' => $wgMaxGeneratedPPNodeCount,
1137 'maxPPExpandDepth' => $wgMaxPPExpandDepth,
1138 'maxTemplateDepth' => $wgMaxTemplateDepth,
1139 'expensiveParserFunctionLimit' => $wgExpensiveParserFunctionLimit,
1140 'externalLinkTarget' => $wgExternalLinkTarget,
1141 'cleanSignatures' => $wgCleanSignatures,
1142 'disableContentConversion' => $wgDisableLangConversion,
1143 'disableTitleConversion' => $wgDisableLangConversion || $wgDisableTitleConversion,
1144 'magicISBNLinks' => $wgEnableMagicLinks['ISBN'],
1145 'magicPMIDLinks' => $wgEnableMagicLinks['PMID'],
1146 'magicRFCLinks' => $wgEnableMagicLinks['RFC'],
1147 'numberheadings' => User::getDefaultOption( 'numberheadings' ),
1148 'thumbsize' => User::getDefaultOption( 'thumbsize' ),
1149 'stubthreshold' => 0,
1150 'userlang' => MediaWikiServices::getInstance()->getContentLanguage(),
1151 ];
1152 }
1153
1163 private static function getCanonicalOverrides() {
1165
1166 return [
1167 'tidy' => true,
1168 'enableLimitReport' => $wgEnableParserLimitReporting,
1169 ];
1170 }
1171
1178 private function initialiseFromUser( $user, $lang ) {
1179 $this->options = self::getDefaults();
1180
1181 $this->mUser = $user;
1182 $this->options['numberheadings'] = $user->getOption( 'numberheadings' );
1183 $this->options['thumbsize'] = $user->getOption( 'thumbsize' );
1184 $this->options['stubthreshold'] = $user->getStubThreshold();
1185 $this->options['userlang'] = $lang;
1186 }
1187
1197 public function matches( ParserOptions $other ) {
1198 // Populate lazy options
1199 foreach ( self::$lazyOptions as $name => $callback ) {
1200 if ( $this->options[$name] === null ) {
1201 $this->options[$name] = call_user_func( $callback, $this, $name );
1202 }
1203 if ( $other->options[$name] === null ) {
1204 $other->options[$name] = call_user_func( $callback, $other, $name );
1205 }
1206 }
1207
1208 // Compare most options
1209 $options = array_keys( $this->options );
1210 $options = array_diff( $options, [
1211 'enableLimitReport', // only affects HTML comments
1212 ] );
1213 foreach ( $options as $option ) {
1214 $o1 = $this->optionToString( $this->options[$option] );
1215 $o2 = $this->optionToString( $other->options[$option] );
1216 if ( $o1 !== $o2 ) {
1217 return false;
1218 }
1219 }
1220
1221 // Compare most other fields
1222 $fields = array_keys( get_class_vars( __CLASS__ ) );
1223 $fields = array_diff( $fields, [
1224 'defaults', // static
1225 'lazyOptions', // static
1226 'inCacheKey', // static
1227 'options', // Already checked above
1228 'onAccessCallback', // only used for ParserOutput option tracking
1229 ] );
1230 foreach ( $fields as $field ) {
1231 if ( !is_object( $this->$field ) && $this->$field !== $other->$field ) {
1232 return false;
1233 }
1234 }
1235
1236 return true;
1237 }
1238
1244 public function registerWatcher( $callback ) {
1245 $this->onAccessCallback = $callback;
1246 }
1247
1256 public function optionUsed( $optionName ) {
1257 if ( $this->onAccessCallback ) {
1258 call_user_func( $this->onAccessCallback, $optionName );
1259 }
1260 }
1261
1269 public static function legacyOptions() {
1270 wfDeprecated( __METHOD__, '1.30' );
1271 return [
1272 'stubthreshold',
1273 'numberheadings',
1274 'userlang',
1275 'thumbsize',
1276 'editsection',
1277 'printable'
1278 ];
1279 }
1280
1286 public static function allCacheVaryingOptions() {
1287 // Trigger a call to the 'ParserOptionsRegister' hook if it hasn't
1288 // already been called.
1289 if ( self::$defaults === null ) {
1290 self::getDefaults();
1291 }
1292 return array_keys( array_filter( self::$inCacheKey ) );
1293 }
1294
1300 private function optionToString( $value ) {
1301 if ( $value === true ) {
1302 return '1';
1303 } elseif ( $value === false ) {
1304 return '0';
1305 } elseif ( $value === null ) {
1306 return '';
1307 } elseif ( $value instanceof Language ) {
1308 return $value->getCode();
1309 } elseif ( is_array( $value ) ) {
1310 return '[' . implode( ',', array_map( [ $this, 'optionToString' ], $value ) ) . ']';
1311 } else {
1312 return (string)$value;
1313 }
1314 }
1315
1328 public function optionsHash( $forOptions, $title = null ) {
1329 global $wgRenderHashAppend;
1330
1331 $inCacheKey = self::allCacheVaryingOptions();
1332
1333 // Resolve any lazy options
1334 foreach ( array_intersect( $forOptions, $inCacheKey, array_keys( self::$lazyOptions ) ) as $k ) {
1335 if ( $this->options[$k] === null ) {
1336 $this->options[$k] = call_user_func( self::$lazyOptions[$k], $this, $k );
1337 }
1338 }
1339
1341 $defaults = self::getCanonicalOverrides() + self::getDefaults();
1342
1343 // We only include used options with non-canonical values in the key
1344 // so adding a new option doesn't invalidate the entire parser cache.
1345 // The drawback to this is that changing the default value of an option
1346 // requires manual invalidation of existing cache entries, as mentioned
1347 // in the docs on the relevant methods and hooks.
1348 $values = [];
1349 foreach ( array_intersect( $inCacheKey, $forOptions ) as $option ) {
1350 $v = $this->optionToString( $options[$option] );
1351 $d = $this->optionToString( $defaults[$option] );
1352 if ( $v !== $d ) {
1353 $values[] = "$option=$v";
1354 }
1355 }
1356
1357 $confstr = $values ? implode( '!', $values ) : 'canonical';
1358
1359 // add in language specific options, if any
1360 // @todo FIXME: This is just a way of retrieving the url/user preferred variant
1361 if ( !is_null( $title ) ) {
1362 $confstr .= $title->getPageLanguage()->getExtraHashOptions();
1363 } else {
1364 $confstr .=
1365 MediaWikiServices::getInstance()->getContentLanguage()->getExtraHashOptions();
1366 }
1367
1368 $confstr .= $wgRenderHashAppend;
1369
1370 if ( $this->mExtraKey != '' ) {
1371 $confstr .= $this->mExtraKey;
1372 }
1373
1374 // Give a chance for extensions to modify the hash, if they have
1375 // extra options or other effects on the parser cache.
1376 Hooks::run( 'PageRenderingHash', [ &$confstr, $this->getUser(), &$forOptions ] );
1377
1378 // Make it a valid memcached key fragment
1379 $confstr = str_replace( ' ', '_', $confstr );
1380
1381 return $confstr;
1382 }
1383
1389 public function isSafeToCache() {
1390 $defaults = self::getCanonicalOverrides() + self::getDefaults();
1391 foreach ( $this->options as $option => $value ) {
1392 if ( empty( self::$inCacheKey[$option] ) ) {
1393 $v = $this->optionToString( $value );
1394 $d = $this->optionToString( $defaults[$option] );
1395 if ( $v !== $d ) {
1396 return false;
1397 }
1398 }
1399 }
1400 return true;
1401 }
1402
1413 public function setupFakeRevision( $title, $content, $user ) {
1414 $oldCallback = $this->setCurrentRevisionCallback(
1415 function (
1416 $titleToCheck, $parser = false ) use ( $title, $content, $user, &$oldCallback
1417 ) {
1418 if ( $titleToCheck->equals( $title ) ) {
1419 return new Revision( [
1420 'page' => $title->getArticleID(),
1421 'user_text' => $user->getName(),
1422 'user' => $user->getId(),
1423 'parent_id' => $title->getLatestRevID(),
1424 'title' => $title,
1425 'content' => $content
1426 ] );
1427 } else {
1428 return call_user_func( $oldCallback, $titleToCheck, $parser );
1429 }
1430 }
1431 );
1432
1433 global $wgHooks;
1434 $wgHooks['TitleExists'][] =
1435 function ( $titleToCheck, &$exists ) use ( $title ) {
1436 if ( $titleToCheck->equals( $title ) ) {
1437 $exists = true;
1438 }
1439 };
1440 end( $wgHooks['TitleExists'] );
1441 $key = key( $wgHooks['TitleExists'] );
1442 $linkCache = MediaWikiServices::getInstance()->getLinkCache();
1443 $linkCache->clearBadLink( $title->getPrefixedDBkey() );
1444 return new ScopedCallback( function () use ( $title, $key, $linkCache ) {
1445 global $wgHooks;
1446 unset( $wgHooks['TitleExists'][$key] );
1447 $linkCache->clearLink( $title );
1448 } );
1449 }
1450}
1451
Apache License January AND DISTRIBUTION Definitions License shall mean the terms and conditions for use
$wgMaxTemplateDepth
Maximum recursion depth for templates within templates.
$wgMaxPPNodeCount
A complexity limit on template expansion: the maximum number of nodes visited by PPFrame::expand()
$wgMaxArticleSize
Maximum article size in kilobytes.
$wgMaxGeneratedPPNodeCount
A complexity limit on template expansion: the maximum number of elements generated by Preprocessor::p...
$wgEnableParserLimitReporting
Whether to include the NewPP limit report as a HTML comment.
$wgEnableImageWhitelist
If $wgAllowExternalImages is false, you can allow an on-wiki whitelist of regular expression fragment...
$wgCleanSignatures
If true, removes (by substituting) templates in signatures.
$wgRenderHashAppend
Append a configured value to the parser cache and the sitenotice key so that they can be kept separat...
$wgMaxPPExpandDepth
$wgDisableLangConversion
Whether to enable language variant conversion.
$wgAllowSpecialInclusion
Allow special page inclusions such as {{Special:Allpages}}.
$wgAllowExternalImagesFrom
If the above is false, you can specify an exception here.
$wgInterwikiMagic
Treat language links as magic connectors, not inline links.
$wgAllowExternalImages
Whether to allow inline image pointing to other websites.
$wgEnableMagicLinks
Enable the magic links feature of automatically turning ISBN xxx, PMID xxx, RFC xxx into links.
$wgExternalLinkTarget
Set a default target for external links, e.g.
$wgExpensiveParserFunctionLimit
Maximum number of calls per parse to expensive parser functions such as PAGESINCATEGORY.
$wgDisableTitleConversion
Whether to enable language variant conversion for links.
wfTimestampNow()
Convenience function; returns MediaWiki timestamp for the present time.
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...
wfDeprecated( $function, $version=false, $component=false, $callerOffset=2)
Throws a warning that $function is deprecated.
$wgLang
Definition Setup.php:910
Internationalisation code.
Definition Language.php:35
MediaWikiServices is the service locator for the application scope of MediaWiki.
Set options of the Parser.
setAllowExternalImagesFrom( $x)
External images to allow.
disableTitleConversion( $x=true)
Whether title conversion should be disabled.
setIsSectionPreview( $x)
Parsing the page for a "preview" operation on a single section?
setIsPrintable( $x)
Parsing the printable version of the page?
getRedirectTarget()
Get the previously-set redirect target.
setAllowUnsafeRawHtml( $x)
If the wiki is configured to allow raw html ($wgRawHtml = true) is it allowed in the specific case of...
getTidy()
Use tidy to cleanup output HTML?
static initSpeculativeRevId(ParserOptions $popt)
Callback registered with ParserOptions::$lazyOptions, triggered by getSpeculativeRevId().
setIsPreview( $x)
Parsing the page for a "preview" operation?
setDateFormat( $x)
Date format index.
static initDateFormat( $popt)
Lazy initializer for dateFormat.
getSpeculativeRevIdCallback()
Callback to generate a guess for {{REVISIONID}}.
enableLimitReport( $x=true)
Enable limit report in an HTML comment on output.
setTidy( $x)
Use tidy to cleanup output HTML?
optionToString( $value)
Convert an option to a string value.
callable null $onAccessCallback
Function to be called when an option is accessed.
getAllowExternalImages()
Allow all external images inline?
setNumberHeadings( $x)
Automatically number headings?
matches(ParserOptions $other)
Check if these options match that of another options set.
getMaxIncludeSize()
Maximum size of template expansions, in bytes.
setStubThreshold( $x)
Thumb size preferred by the user.
setTemplateCallback( $x)
Callback for template fetching; first argument to call_user_func().
setAllowExternalImages( $x)
Allow all external images inline?
getUserLangObj()
Get the user language used by the parser for this page and split the parser cache.
setMaxIncludeSize( $x)
Maximum size of template expansions, in bytes.
getEditSection()
Create "edit section" links?
static newCanonical( $context=null, $userLang=null)
Creates a "canonical" ParserOptions object.
static getCanonicalOverrides()
Get "canonical" non-default option values.
getEnableImageWhitelist()
Use the on-wiki external image whitelist?
getTargetLanguage()
Target language for the parse.
getAllowExternalImagesFrom()
External images to allow.
getCurrentRevisionCallback()
Callback for current revision fetching; first argument to call_user_func().
getIsSectionPreview()
Parsing the page for a "preview" operation on a single section?
getDisableContentConversion()
Whether content conversion should be disabled.
setInterfaceMessage( $x)
Parsing an interface message?
setTimestamp( $x)
Timestamp used for {{CURRENTDAY}} etc.
getMaxPPExpandDepth()
Maximum recursion depth in PPFrame::expand()
getExpensiveParserFunctionLimit()
Maximum number of calls per parse to expensive parser functions.
getAllowUnsafeRawHtml()
If the wiki is configured to allow raw html ($wgRawHtml = true) is it allowed in the specific case of...
getNumberHeadings()
Automatically number headings?
setCurrentRevisionCallback( $x)
Callback for current revision fetching; first argument to call_user_func().
getIsPreview()
Parsing the page for a "preview" operation?
static getDefaults()
Get default option values.
setOptionLegacy( $name, $value)
Legacy implementation.
setMaxTemplateDepth( $x)
Maximum recursion depth for templates within templates.
setEnableImageWhitelist( $x)
Use the on-wiki external image whitelist?
getPreSaveTransform()
Transform wiki markup when saving the page?
setWrapOutputClass( $className)
CSS class to use to wrap output from Parser::parse()
User $mUser
Stored user object.
getUser()
Current user.
optionUsed( $optionName)
Called when an option is accessed.
setRedirectTarget( $title)
Set the redirect target.
getWrapOutputClass()
Class to use to wrap output from Parser::parse()
getIsPrintable()
Parsing the printable version of the page?
getStubThreshold()
Thumb size preferred by the user.
const HAS_NEWCANONICAL_FROM_CONTEXT
Flag indicating that newCanonical() accepts an IContextSource or the string 'canonical',...
disableContentConversion( $x=true)
Whether content conversion should be disabled.
initialiseFromUser( $user, $lang)
Get user options.
getOption( $name)
Fetch an option, generically.
setThumbSize( $x)
Thumb size preferred by the user.
optionsHash( $forOptions, $title=null)
Generate a hash string with the values set on these ParserOptions for the keys given in the array.
$mExtraKey
Appended to the options hash.
setAllowSpecialInclusion( $x)
Allow inclusion of special pages?
setOption( $name, $value)
Set an option, generically.
getMaxTemplateDepth()
Maximum recursion depth for templates within templates.
getAllowSpecialInclusion()
Allow inclusion of special pages?
setTargetLanguage( $x)
Target language for the parse.
string null $mTimestamp
Timestamp used for {{CURRENTDAY}} etc.
getMagicRFCLinks()
Are magic RFC links enabled?
setupFakeRevision( $title, $content, $user)
Sets a hook to force that a page exists, and sets a current revision callback to return a revision wi...
getMagicPMIDLinks()
Are magic PMID links enabled?
static legacyOptions()
Returns the full array of options that would have been used by in 1.16.
static array $inCacheKey
Specify options that are included in the cache key.
static newFromContext(IContextSource $context)
Get a ParserOptions object from a IContextSource object.
static callback[] $lazyOptions
Lazy-loaded options.
registerWatcher( $callback)
Registers a callback for tracking which ParserOptions which are used.
getCleanSignatures()
Clean up signature texts?
addExtraKey( $key)
Extra key that should be present in the parser cache key.
setInterwikiMagic( $x)
Specify whether to extract interlanguage links.
static newFromAnon()
Get a ParserOptions object for an anonymous user.
setUserLang( $x)
Set the user language used by the parser for this page and split the parser cache.
static newFromUser( $user)
Get a ParserOptions object from a given user.
getUserLang()
Same as getUserLangObj() but returns a string instead.
getDateFormat()
Date format index.
setExternalLinkTarget( $x)
Target attribute for external links.
getMaxGeneratedPPNodeCount()
Maximum number of nodes generated by Preprocessor::preprocessToObj()
array $options
Current values for all options that are relevant for caching.
getRemoveComments()
Remove HTML comments.
setRemoveComments( $x)
Remove HTML comments.
Title null $redirectTarget
If the page being parsed is a redirect, this should hold the redirect target.
setMaxGeneratedPPNodeCount( $x)
Maximum number of nodes generated by Preprocessor::preprocessToObj()
getMaxPPNodeCount()
Maximum number of nodes touched by PPFrame::expand()
static newFromUserAndLang(User $user, Language $lang)
Get a ParserOptions object from a given user and language.
getEnableLimitReport()
Enable limit report in an HTML comment on output.
getExternalLinkTarget()
Target attribute for external links.
getMagicISBNLinks()
Are magic ISBN links enabled?
getThumbSize()
Thumb size preferred by the user.
getInterwikiMagic()
Whether to extract interlanguage links.
__construct( $user=null, $lang=null)
setEditSection( $x)
Create "edit section" links?
getTimestamp()
Timestamp used for {{CURRENTDAY}} etc.
getTemplateCallback()
Callback for template fetching; first argument to call_user_func().
getSpeculativeRevId()
A guess for {{REVISIONID}}, calculated using the callback provided via setSpeculativeRevIdCallback().
setSpeculativeRevIdCallback( $x)
Callback to generate a guess for {{REVISIONID}}.
isSafeToCache()
Test whether these options are safe to cache.
getDisableTitleConversion()
Whether title conversion should be disabled.
getInterfaceMessage()
Parsing an interface message?
static allCacheVaryingOptions()
Return all option keys that vary the options hash.
setExpensiveParserFunctionLimit( $x)
Maximum number of calls per parse to expensive parser functions.
setPreSaveTransform( $x)
Transform wiki markup when saving the page?
setMaxPPNodeCount( $x)
Maximum number of nodes touched by PPFrame::expand()
static array null $defaults
Default values for all options that are relevant for caching.
setCleanSignatures( $x)
Clean up signature texts?
static isRealObject( $obj)
Returns a bool value whenever $obj is a stub object.
Represents a title within MediaWiki.
Definition Title.php:39
The User object encapsulates all of the user-specific settings (user_id, name, rights,...
Definition User.php:47
static getDefaultOption( $opt)
Get a given default option value.
Definition User.php:1818
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
see documentation in includes Linker php for Linker::makeImageLink or false for current used if you return false $parser
Definition hooks.txt:1873
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
Definition hooks.txt:2050
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
Definition hooks.txt:2214
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
Definition hooks.txt:2885
namespace and then decline to actually register it file or subcat img or subcat $title
Definition hooks.txt:994
Using a hook running we can avoid having all this option specific stuff in our mainline code Using the function We ve cleaned up the code here by removing clumps of infrequently used code and moving them off somewhere else It s much easier for someone working with this code to see what s _really_ going and make changes or fix bugs In we can take all the code that deals with the little used title reversing options(say) and put it in one place. Instead of having little title-reversing if-blocks spread all over the codebase in showAnArticle
null means default in associative array with keys and values unescaped Should be merged with default with a value of false meaning to suppress the attribute in associative array with keys and values unescaped noclasses & $ret
Definition hooks.txt:2054
$wgHooks['ArticleShow'][]
Definition hooks.txt:108
Allows to change the fields on the form that will be generated $name
Definition hooks.txt:302
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
Definition hooks.txt:247
injection txt This is an overview of how MediaWiki makes use of dependency injection The design described here grew from the discussion of RFC T384 The term dependency this means that anything an object needs to operate should be injected from the the object itself should only know narrow no concrete implementation of the logic it relies on The requirement to inject everything typically results in an architecture that based on two main types of and essentially stateless service objects that use other service objects to operate on the value objects As of the beginning MediaWiki is only starting to use the DI approach Much of the code still relies on global state or direct resulting in a highly cyclical dependency which acts as the top level factory for services in MediaWiki which can be used to gain access to default instances of various services MediaWikiServices however also allows new services to be defined and default services to be redefined Services are defined or redefined by providing a callback the instantiator that will return a new instance of the service When it will create an instance of MediaWikiServices and populate it with the services defined in the files listed by thereby bootstrapping the DI framework Per $wgServiceWiringFiles lists includes ServiceWiring php
Definition injection.txt:37
Interface for objects which can provide a MediaWiki context on request.
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))
$content
if(!isset( $args[0])) $lang