MediaWiki  1.28.0
ParserOptions.php
Go to the documentation of this file.
1 <?php
24 
34 
39 
44 
49 
54 
58  private $mDateFormat = null;
59 
63  private $mEditSection = true;
64 
69 
73  private $mTidy = false;
74 
78  private $mInterfaceMessage = false;
79 
83  private $mTargetLanguage = null;
84 
89 
94 
99 
104 
109 
114 
118  private $mRemoveComments = true;
119 
124  [ 'Parser', 'statelessFetchRevision' ];
125 
130  [ 'Parser', 'statelessFetchTemplate' ];
131 
136 
140  private $mEnableLimitReport = false;
141 
145  private $mTimestamp;
146 
151 
157 
161  private $mPreSaveTransform = true;
162 
167 
172 
177 
181  private $mThumbSize;
182 
187 
191  private $mUserLang;
192 
197  private $mUser;
198 
202  private $mIsPreview = false;
203 
207  private $mIsSectionPreview = false;
208 
212  private $mIsPrintable = false;
213 
217  private $mExtraKey = '';
218 
222  private $mMagicISBNLinks = true;
223 
227  private $mMagicPMIDLinks = true;
228 
232  private $mMagicRFCLinks = true;
233 
237  private $onAccessCallback = null;
238 
244  private $redirectTarget = null;
245 
246  public function getInterwikiMagic() {
247  return $this->mInterwikiMagic;
248  }
249 
250  public function getAllowExternalImages() {
252  }
253 
254  public function getAllowExternalImagesFrom() {
256  }
257 
258  public function getEnableImageWhitelist() {
260  }
261 
262  public function getEditSection() {
263  return $this->mEditSection;
264  }
265 
266  public function getNumberHeadings() {
267  $this->optionUsed( 'numberheadings' );
268 
269  return $this->mNumberHeadings;
270  }
271 
272  public function getAllowSpecialInclusion() {
274  }
275 
276  public function getTidy() {
277  return $this->mTidy;
278  }
279 
280  public function getInterfaceMessage() {
282  }
283 
284  public function getTargetLanguage() {
285  return $this->mTargetLanguage;
286  }
287 
288  public function getMaxIncludeSize() {
289  return $this->mMaxIncludeSize;
290  }
291 
292  public function getMaxPPNodeCount() {
293  return $this->mMaxPPNodeCount;
294  }
295 
296  public function getMaxGeneratedPPNodeCount() {
298  }
299 
300  public function getMaxPPExpandDepth() {
302  }
303 
304  public function getMaxTemplateDepth() {
306  }
307 
308  /* @since 1.20 */
311  }
312 
313  public function getRemoveComments() {
314  return $this->mRemoveComments;
315  }
316 
317  /* @since 1.24 */
318  public function getCurrentRevisionCallback() {
320  }
321 
322  public function getTemplateCallback() {
324  }
325 
327  public function getSpeculativeRevIdCallback() {
329  }
330 
331  public function getEnableLimitReport() {
333  }
334 
335  public function getCleanSignatures() {
337  }
338 
339  public function getExternalLinkTarget() {
341  }
342 
343  public function getDisableContentConversion() {
345  }
346 
347  public function getDisableTitleConversion() {
349  }
350 
351  public function getThumbSize() {
352  $this->optionUsed( 'thumbsize' );
353 
354  return $this->mThumbSize;
355  }
356 
357  public function getStubThreshold() {
358  $this->optionUsed( 'stubthreshold' );
359 
360  return $this->mStubThreshold;
361  }
362 
363  public function getIsPreview() {
364  return $this->mIsPreview;
365  }
366 
367  public function getIsSectionPreview() {
369  }
370 
371  public function getIsPrintable() {
372  $this->optionUsed( 'printable' );
373 
374  return $this->mIsPrintable;
375  }
376 
377  public function getUser() {
378  return $this->mUser;
379  }
380 
381  public function getPreSaveTransform() {
383  }
384 
385  public function getDateFormat() {
386  $this->optionUsed( 'dateformat' );
387  if ( !isset( $this->mDateFormat ) ) {
388  $this->mDateFormat = $this->mUser->getDatePreference();
389  }
390  return $this->mDateFormat;
391  }
392 
393  public function getTimestamp() {
394  if ( !isset( $this->mTimestamp ) ) {
395  $this->mTimestamp = wfTimestampNow();
396  }
397  return $this->mTimestamp;
398  }
399 
417  public function getUserLangObj() {
418  $this->optionUsed( 'userlang' );
419  return $this->mUserLang;
420  }
421 
434  public function getUserLang() {
435  return $this->getUserLangObj()->getCode();
436  }
437 
442  public function getMagicISBNLinks() {
443  return $this->mMagicISBNLinks;
444  }
445 
450  public function getMagicPMIDLinks() {
451  return $this->mMagicPMIDLinks;
452  }
457  public function getMagicRFCLinks() {
458  return $this->mMagicRFCLinks;
459  }
460  public function setInterwikiMagic( $x ) {
461  return wfSetVar( $this->mInterwikiMagic, $x );
462  }
463 
464  public function setAllowExternalImages( $x ) {
465  return wfSetVar( $this->mAllowExternalImages, $x );
466  }
467 
468  public function setAllowExternalImagesFrom( $x ) {
469  return wfSetVar( $this->mAllowExternalImagesFrom, $x );
470  }
471 
472  public function setEnableImageWhitelist( $x ) {
473  return wfSetVar( $this->mEnableImageWhitelist, $x );
474  }
475 
476  public function setDateFormat( $x ) {
477  return wfSetVar( $this->mDateFormat, $x );
478  }
479 
480  public function setEditSection( $x ) {
481  return wfSetVar( $this->mEditSection, $x );
482  }
483 
484  public function setNumberHeadings( $x ) {
485  return wfSetVar( $this->mNumberHeadings, $x );
486  }
487 
488  public function setAllowSpecialInclusion( $x ) {
489  return wfSetVar( $this->mAllowSpecialInclusion, $x );
490  }
491 
492  public function setTidy( $x ) {
493  return wfSetVar( $this->mTidy, $x );
494  }
495 
496  public function setInterfaceMessage( $x ) {
497  return wfSetVar( $this->mInterfaceMessage, $x );
498  }
499 
500  public function setTargetLanguage( $x ) {
501  return wfSetVar( $this->mTargetLanguage, $x, true );
502  }
503 
504  public function setMaxIncludeSize( $x ) {
505  return wfSetVar( $this->mMaxIncludeSize, $x );
506  }
507 
508  public function setMaxPPNodeCount( $x ) {
509  return wfSetVar( $this->mMaxPPNodeCount, $x );
510  }
511 
512  public function setMaxGeneratedPPNodeCount( $x ) {
513  return wfSetVar( $this->mMaxGeneratedPPNodeCount, $x );
514  }
515 
516  public function setMaxTemplateDepth( $x ) {
517  return wfSetVar( $this->mMaxTemplateDepth, $x );
518  }
519 
520  /* @since 1.20 */
521  public function setExpensiveParserFunctionLimit( $x ) {
522  return wfSetVar( $this->mExpensiveParserFunctionLimit, $x );
523  }
524 
525  public function setRemoveComments( $x ) {
526  return wfSetVar( $this->mRemoveComments, $x );
527  }
528 
529  /* @since 1.24 */
530  public function setCurrentRevisionCallback( $x ) {
531  return wfSetVar( $this->mCurrentRevisionCallback, $x );
532  }
533 
535  public function setSpeculativeRevIdCallback( $x ) {
536  return wfSetVar( $this->mSpeculativeRevIdCallback, $x );
537  }
538 
539  public function setTemplateCallback( $x ) {
540  return wfSetVar( $this->mTemplateCallback, $x );
541  }
542 
543  public function enableLimitReport( $x = true ) {
544  return wfSetVar( $this->mEnableLimitReport, $x );
545  }
546 
547  public function setTimestamp( $x ) {
548  return wfSetVar( $this->mTimestamp, $x );
549  }
550 
551  public function setCleanSignatures( $x ) {
552  return wfSetVar( $this->mCleanSignatures, $x );
553  }
554 
555  public function setExternalLinkTarget( $x ) {
556  return wfSetVar( $this->mExternalLinkTarget, $x );
557  }
558 
559  public function disableContentConversion( $x = true ) {
560  return wfSetVar( $this->mDisableContentConversion, $x );
561  }
562 
563  public function disableTitleConversion( $x = true ) {
564  return wfSetVar( $this->mDisableTitleConversion, $x );
565  }
566 
567  public function setUserLang( $x ) {
568  if ( is_string( $x ) ) {
569  $x = Language::factory( $x );
570  }
571 
572  return wfSetVar( $this->mUserLang, $x );
573  }
574 
575  public function setThumbSize( $x ) {
576  return wfSetVar( $this->mThumbSize, $x );
577  }
578 
579  public function setStubThreshold( $x ) {
580  return wfSetVar( $this->mStubThreshold, $x );
581  }
582 
583  public function setPreSaveTransform( $x ) {
584  return wfSetVar( $this->mPreSaveTransform, $x );
585  }
586 
587  public function setIsPreview( $x ) {
588  return wfSetVar( $this->mIsPreview, $x );
589  }
590 
591  public function setIsSectionPreview( $x ) {
592  return wfSetVar( $this->mIsSectionPreview, $x );
593  }
594 
595  public function setIsPrintable( $x ) {
596  return wfSetVar( $this->mIsPrintable, $x );
597  }
598 
609  function setRedirectTarget( $title ) {
610  $this->redirectTarget = $title;
611  }
612 
619  function getRedirectTarget() {
620  return $this->redirectTarget;
621  }
622 
627  public function addExtraKey( $key ) {
628  $this->mExtraKey .= '!' . $key;
629  }
630 
636  public function __construct( $user = null, $lang = null ) {
637  if ( $user === null ) {
638  global $wgUser;
639  if ( $wgUser === null ) {
640  $user = new User;
641  } else {
642  $user = $wgUser;
643  }
644  }
645  if ( $lang === null ) {
646  global $wgLang;
647  if ( !StubObject::isRealObject( $wgLang ) ) {
648  $wgLang->_unstub();
649  }
650  $lang = $wgLang;
651  }
652  $this->initialiseFromUser( $user, $lang );
653  }
654 
660  public static function newFromAnon() {
662  return new ParserOptions( new User, $wgContLang );
663  }
664 
672  public static function newFromUser( $user ) {
673  return new ParserOptions( $user );
674  }
675 
683  public static function newFromUserAndLang( User $user, Language $lang ) {
684  return new ParserOptions( $user, $lang );
685  }
686 
693  public static function newFromContext( IContextSource $context ) {
694  return new ParserOptions( $context->getUser(), $context->getLanguage() );
695  }
696 
703  private function initialiseFromUser( $user, $lang ) {
704  global $wgInterwikiMagic, $wgAllowExternalImages,
705  $wgAllowExternalImagesFrom, $wgEnableImageWhitelist, $wgAllowSpecialInclusion,
706  $wgMaxArticleSize, $wgMaxPPNodeCount, $wgMaxTemplateDepth, $wgMaxPPExpandDepth,
707  $wgCleanSignatures, $wgExternalLinkTarget, $wgExpensiveParserFunctionLimit,
708  $wgMaxGeneratedPPNodeCount, $wgDisableLangConversion, $wgDisableTitleConversion,
709  $wgEnableMagicLinks;
710 
711  // *UPDATE* ParserOptions::matches() if any of this changes as needed
712  $this->mInterwikiMagic = $wgInterwikiMagic;
713  $this->mAllowExternalImages = $wgAllowExternalImages;
714  $this->mAllowExternalImagesFrom = $wgAllowExternalImagesFrom;
715  $this->mEnableImageWhitelist = $wgEnableImageWhitelist;
716  $this->mAllowSpecialInclusion = $wgAllowSpecialInclusion;
717  $this->mMaxIncludeSize = $wgMaxArticleSize * 1024;
718  $this->mMaxPPNodeCount = $wgMaxPPNodeCount;
719  $this->mMaxGeneratedPPNodeCount = $wgMaxGeneratedPPNodeCount;
720  $this->mMaxPPExpandDepth = $wgMaxPPExpandDepth;
721  $this->mMaxTemplateDepth = $wgMaxTemplateDepth;
722  $this->mExpensiveParserFunctionLimit = $wgExpensiveParserFunctionLimit;
723  $this->mCleanSignatures = $wgCleanSignatures;
724  $this->mExternalLinkTarget = $wgExternalLinkTarget;
725  $this->mDisableContentConversion = $wgDisableLangConversion;
726  $this->mDisableTitleConversion = $wgDisableLangConversion || $wgDisableTitleConversion;
727  $this->mMagicISBNLinks = $wgEnableMagicLinks['ISBN'];
728  $this->mMagicPMIDLinks = $wgEnableMagicLinks['PMID'];
729  $this->mMagicRFCLinks = $wgEnableMagicLinks['RFC'];
730 
731  $this->mUser = $user;
732  $this->mNumberHeadings = $user->getOption( 'numberheadings' );
733  $this->mThumbSize = $user->getOption( 'thumbsize' );
734  $this->mStubThreshold = $user->getStubThreshold();
735  $this->mUserLang = $lang;
736 
737  }
738 
748  public function matches( ParserOptions $other ) {
749  $fields = array_keys( get_class_vars( __CLASS__ ) );
750  $fields = array_diff( $fields, [
751  'mEnableLimitReport', // only effects HTML comments
752  'onAccessCallback', // only used for ParserOutput option tracking
753  ] );
754  foreach ( $fields as $field ) {
755  if ( !is_object( $this->$field ) && $this->$field !== $other->$field ) {
756  return false;
757  }
758  }
759  // Check the object and lazy-loaded options
760  return (
761  $this->mUserLang->equals( $other->mUserLang ) &&
762  $this->getDateFormat() === $other->getDateFormat()
763  );
764  }
765 
771  public function registerWatcher( $callback ) {
772  $this->onAccessCallback = $callback;
773  }
774 
783  public function optionUsed( $optionName ) {
784  if ( $this->onAccessCallback ) {
785  call_user_func( $this->onAccessCallback, $optionName );
786  }
787  }
788 
795  public static function legacyOptions() {
796  return [
797  'stubthreshold',
798  'numberheadings',
799  'userlang',
800  'thumbsize',
801  'editsection',
802  'printable'
803  ];
804  }
805 
822  public function optionsHash( $forOptions, $title = null ) {
824 
825  // FIXME: Once the cache key is reorganized this argument
826  // can be dropped. It was used when the math extension was
827  // part of core.
828  $confstr = '*';
829 
830  // Space assigned for the stubthreshold but unused
831  // since it disables the parser cache, its value will always
832  // be 0 when this function is called by parsercache.
833  if ( in_array( 'stubthreshold', $forOptions ) ) {
834  $confstr .= '!' . $this->mStubThreshold;
835  } else {
836  $confstr .= '!*';
837  }
838 
839  if ( in_array( 'dateformat', $forOptions ) ) {
840  $confstr .= '!' . $this->getDateFormat();
841  }
842 
843  if ( in_array( 'numberheadings', $forOptions ) ) {
844  $confstr .= '!' . ( $this->mNumberHeadings ? '1' : '' );
845  } else {
846  $confstr .= '!*';
847  }
848 
849  if ( in_array( 'userlang', $forOptions ) ) {
850  $confstr .= '!' . $this->mUserLang->getCode();
851  } else {
852  $confstr .= '!*';
853  }
854 
855  if ( in_array( 'thumbsize', $forOptions ) ) {
856  $confstr .= '!' . $this->mThumbSize;
857  } else {
858  $confstr .= '!*';
859  }
860 
861  // add in language specific options, if any
862  // @todo FIXME: This is just a way of retrieving the url/user preferred variant
863  if ( !is_null( $title ) ) {
864  $confstr .= $title->getPageLanguage()->getExtraHashOptions();
865  } else {
867  $confstr .= $wgContLang->getExtraHashOptions();
868  }
869 
870  $confstr .= $wgRenderHashAppend;
871 
872  // @note: as of Feb 2015, core never sets the editsection flag, since it uses
873  // <mw:editsection> tags to inject editsections on the fly. However, extensions
874  // may be using it by calling ParserOption::optionUsed resp. ParserOutput::registerOption
875  // directly. At least Wikibase does at this point in time.
876  if ( !in_array( 'editsection', $forOptions ) ) {
877  $confstr .= '!*';
878  } elseif ( !$this->mEditSection ) {
879  $confstr .= '!edit=0';
880  }
881 
882  if ( $this->mIsPrintable && in_array( 'printable', $forOptions ) ) {
883  $confstr .= '!printable=1';
884  }
885 
886  if ( $this->mExtraKey != '' ) {
887  $confstr .= $this->mExtraKey;
888  }
889 
890  // Give a chance for extensions to modify the hash, if they have
891  // extra options or other effects on the parser cache.
892  Hooks::run( 'PageRenderingHash', [ &$confstr, $this->getUser(), &$forOptions ] );
893 
894  // Make it a valid memcached key fragment
895  $confstr = str_replace( ' ', '_', $confstr );
896 
897  return $confstr;
898  }
899 
910  public function setupFakeRevision( $title, $content, $user ) {
911  $oldCallback = $this->setCurrentRevisionCallback(
912  function (
913  $titleToCheck, $parser = false ) use ( $title, $content, $user, &$oldCallback
914  ) {
915  if ( $titleToCheck->equals( $title ) ) {
916  return new Revision( [
917  'page' => $title->getArticleID(),
918  'user_text' => $user->getName(),
919  'user' => $user->getId(),
920  'parent_id' => $title->getLatestRevID(),
921  'title' => $title,
922  'content' => $content
923  ] );
924  } else {
925  return call_user_func( $oldCallback, $titleToCheck, $parser );
926  }
927  }
928  );
929 
931  $wgHooks['TitleExists'][] =
932  function ( $titleToCheck, &$exists ) use ( $title ) {
933  if ( $titleToCheck->equals( $title ) ) {
934  $exists = true;
935  }
936  };
937  end( $wgHooks['TitleExists'] );
938  $key = key( $wgHooks['TitleExists'] );
939  LinkCache::singleton()->clearBadLink( $title->getPrefixedDBkey() );
940  return new ScopedCallback( function () use ( $title, $key ) {
942  unset( $wgHooks['TitleExists'][$key] );
943  LinkCache::singleton()->clearLink( $title );
944  } );
945  }
946 }
static newFromContext(IContextSource $context)
Get a ParserOptions object from a IContextSource object.
$mMagicRFCLinks
Are magic RFC links enabled?
Interface for objects which can provide a MediaWiki context on request.
$wgMaxArticleSize
Maximum article size in kilobytes.
callable $mTemplateCallback
Callback for template fetching; first argument to call_user_func().
$mIsSectionPreview
Parsing the page for a "preview" operation on a single section?
static legacyOptions()
Returns the full array of options that would have been used by in 1.16.
disableTitleConversion($x=true)
$context
Definition: load.php:50
$mAllowExternalImagesFrom
If not, any exception?
$mMaxGeneratedPPNodeCount
Maximum number of nodes generated by Preprocessor::preprocessToObj()
$mDateFormat
Date format index.
Apache License January AND DISTRIBUTION Definitions License shall mean the terms and conditions for use
$mIsPreview
Parsing the page for a "preview" operation?
Set options of the Parser.
if(!isset($args[0])) $lang
setAllowSpecialInclusion($x)
static newFromUserAndLang(User $user, Language $lang)
Get a ParserOptions object from a given user and language.
initialiseFromUser($user, $lang)
Get user options.
setupFakeRevision($title, $content, $user)
Sets a hook to force that a page exists, and sets a current revision callback to return a revision wi...
$mExternalLinkTarget
Target attribute for external links.
setSpeculativeRevIdCallback($x)
$wgHooks['ArticleShow'][]
Definition: hooks.txt:110
when a variable name is used in a it is silently declared as a new local masking the global
Definition: design.txt:93
$mMagicISBNLinks
Are magic ISBN links enabled?
static newFromUser($user)
Get a ParserOptions object from a given user.
User $mUser
Stored user object.
magic word & $parser
Definition: hooks.txt:2487
Title null $redirectTarget
If the page being parsed is a redirect, this should hold the redirect target.
this class mediates it Skin Encapsulates a look and feel for the wiki All of the functions that render HTML and make choices about how to render it are here and are called from various other places when and is meant to be subclassed with other skins that may override some of its functions The User object contains a reference to a and so rather than having a global skin object we just rely on the global User and get the skin with $wgUser and also has some character encoding functions and other locale stuff The current user interface language is instantiated as $wgLang
Definition: design.txt:56
$mStubThreshold
Maximum article size of an article to be marked as "stub".
$mTimestamp
Timestamp used for {{CURRENTDAY}} etc.
callable null $mSpeculativeRevIdCallback
Callback to generate a guess for {{REVISIONID}}.
$mMaxTemplateDepth
Maximum recursion depth for templates within templates.
$mTargetLanguage
Overrides $mInterfaceMessage with arbitrary language.
getUser()
Get the User object.
$wgRenderHashAppend
Append a configured value to the parser cache and the sitenotice key so that they can be kept separat...
static singleton()
Get an instance of this class.
Definition: LinkCache.php:64
design txt This is a brief overview of the new design More thorough and up to date information is available on the documentation wiki at etc Handles the details of getting and saving to the user table of the and dealing with sessions and cookies OutputPage Encapsulates the entire HTML page that will be sent in response to any server request It is used by calling its functions to add in any and then calling but I prefer the flexibility This should also do the output encoding The system allocates a global one in $wgOut Title Represents the title of an and does all the work of translating among various forms such as plain database key
Definition: design.txt:25
$mRemoveComments
Remove HTML comments.
$mAllowSpecialInclusion
Allow inclusion of special pages?
$mCleanSignatures
Clean up signature texts?
setEnableImageWhitelist($x)
registerWatcher($callback)
Registers a callback for tracking which ParserOptions which are used.
getRedirectTarget()
Get the previously-set redirect target.
wfTimestampNow()
Convenience function; returns MediaWiki timestamp for the present time.
callable $mCurrentRevisionCallback
Callback for current revision fetching; first argument to call_user_func().
$mMaxPPNodeCount
Maximum number of nodes touched by PPFrame::expand()
$mIsPrintable
Parsing the printable version of the page?
getUserLangObj()
Get the user language used by the parser for this page and split the parser cache.
$mPreSaveTransform
Transform wiki markup when saving the page?
$wgDisableTitleConversion
Whether to enable language variant conversion for links.
$mInterfaceMessage
Which lang to call for PLURAL and GRAMMAR.
namespace and then decline to actually register it file or subcat img or subcat $title
Definition: hooks.txt:953
$wgInterwikiMagic
Treat language links as magic connectors, not inline links.
static run($event, array $args=[], $deprecatedVersion=null)
Call hook functions defined in Hooks::register and $wgHooks.
Definition: Hooks.php:131
getUserLang()
Same as getUserLangObj() but returns a string instead.
setAllowExternalImages($x)
getLanguage()
Get the Language object.
$mDisableTitleConversion
Whether title conversion should be disabled.
This document is intended to provide useful advice for parties seeking to redistribute MediaWiki to end users It s targeted particularly at maintainers for Linux since it s been observed that distribution packages of MediaWiki often break We ve consistently had to recommend that users seeking support use official tarballs instead of their distribution s and this often solves whatever problem the user is having It would be nice if this could such as
Definition: distributors.txt:9
$wgDisableLangConversion
Whether to enable language variant conversion.
static newFromAnon()
Get a ParserOptions object for an anonymous user.
please add to it if you re going to add events to the MediaWiki code where normally authentication against an external auth plugin would be creating a local account $user
Definition: hooks.txt:242
$mMagicPMIDLinks
Are magic PMID links enabled?
setRedirectTarget($title)
Set the redirect target.
$mInterwikiMagic
Interlanguage links are removed and returned in an array.
disableContentConversion($x=true)
$mExpensiveParserFunctionLimit
Maximum number of calls per parse to expensive parser functions.
setAllowExternalImagesFrom($x)
injection txt This is an overview of how MediaWiki makes use of dependency injection The design described here grew from the discussion of RFC T384 The term dependency this means that anything an object needs to operate should be injected from the the object itself should only know narrow no concrete implementation of the logic it relies on The requirement to inject everything typically results in an architecture that based on two main types of and essentially stateless service objects that use other service objects to operate on the value objects As of the beginning MediaWiki is only starting to use the DI approach Much of the code still relies on global state or direct resulting in a highly cyclical dependency which acts as the top level factory for services in MediaWiki which can be used to gain access to default instances of various services MediaWikiServices however also allows new services to be defined and default services to be redefined Services are defined or redefined by providing a callback the instantiator that will return a new instance of the service When it will create an instance of MediaWikiServices and populate it with the services defined in the files listed by thereby bootstrapping the DI framework Per $wgServiceWiringFiles lists includes ServiceWiring php
Definition: injection.txt:35
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...
$mMaxIncludeSize
Maximum size of template expansions, in bytes.
$onAccessCallback
Function to be called when an option is accessed.
$mDisableContentConversion
Whether content conversion should be disabled.
$mExtraKey
Extra key that should be present in the caching key.
$mEnableLimitReport
Enable limit report in an HTML comment on output.
enableLimitReport($x=true)
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 $content
Definition: hooks.txt:1046
setMaxGeneratedPPNodeCount($x)
$mUserLang
Language object of the User language.
$mMaxPPExpandDepth
Maximum recursion depth in PPFrame::expand()
addExtraKey($key)
Extra key that should be present in the parser cache key.
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
Definition: design.txt:56
$mEditSection
Create "edit section" links?
$mAllowExternalImages
Allow external images inline?
static factory($code)
Get a cached or new language object for a given language code.
Definition: Language.php:181
$mTidy
Use tidy to cleanup output HTML?
optionsHash($forOptions, $title=null)
Generate a hash string with the values set on these ParserOptions for the keys given in the array...
$mThumbSize
Thumb size preferred by the user.
$mEnableImageWhitelist
If not or it doesn't match, should we check an on-wiki whitelist?
setCurrentRevisionCallback($x)
__construct($user=null, $lang=null)
Constructor.
static isRealObject($obj)
Returns a bool value whenever $obj is a stub object.
Definition: StubObject.php:82
setExpensiveParserFunctionLimit($x)
optionUsed($optionName)
Called when an option is accessed.
matches(ParserOptions $other)
Check if these options match that of another options set.
$wgUser
Definition: Setup.php:806
$mNumberHeadings
Automatically number headings?
getExpensiveParserFunctionLimit()