MediaWiki  1.27.1
MagicWord.php
Go to the documentation of this file.
1 <?php
59 class MagicWord {
63  public $mId;
64 
66  public $mSynonyms;
67 
70 
72  private $mRegex = '';
73 
75  private $mRegexStart = '';
76 
78  private $mRegexStartToEnd = '';
79 
81  private $mBaseRegex = '';
82 
84  private $mVariableRegex = '';
85 
88 
90  private $mModified = false;
91 
93  private $mFound = false;
94 
95  public static $mVariableIDsInitialised = false;
96  public static $mVariableIDs = [
97  '!',
98  'currentmonth',
99  'currentmonth1',
100  'currentmonthname',
101  'currentmonthnamegen',
102  'currentmonthabbrev',
103  'currentday',
104  'currentday2',
105  'currentdayname',
106  'currentyear',
107  'currenttime',
108  'currenthour',
109  'localmonth',
110  'localmonth1',
111  'localmonthname',
112  'localmonthnamegen',
113  'localmonthabbrev',
114  'localday',
115  'localday2',
116  'localdayname',
117  'localyear',
118  'localtime',
119  'localhour',
120  'numberofarticles',
121  'numberoffiles',
122  'numberofedits',
123  'articlepath',
124  'pageid',
125  'sitename',
126  'server',
127  'servername',
128  'scriptpath',
129  'stylepath',
130  'pagename',
131  'pagenamee',
132  'fullpagename',
133  'fullpagenamee',
134  'namespace',
135  'namespacee',
136  'namespacenumber',
137  'currentweek',
138  'currentdow',
139  'localweek',
140  'localdow',
141  'revisionid',
142  'revisionday',
143  'revisionday2',
144  'revisionmonth',
145  'revisionmonth1',
146  'revisionyear',
147  'revisiontimestamp',
148  'revisionuser',
149  'revisionsize',
150  'subpagename',
151  'subpagenamee',
152  'talkspace',
153  'talkspacee',
154  'subjectspace',
155  'subjectspacee',
156  'talkpagename',
157  'talkpagenamee',
158  'subjectpagename',
159  'subjectpagenamee',
160  'numberofusers',
161  'numberofactiveusers',
162  'numberofpages',
163  'currentversion',
164  'rootpagename',
165  'rootpagenamee',
166  'basepagename',
167  'basepagenamee',
168  'currenttimestamp',
169  'localtimestamp',
170  'directionmark',
171  'contentlanguage',
172  'numberofadmins',
173  'cascadingsources',
174  ];
175 
176  /* Array of caching hints for ParserCache */
177  public static $mCacheTTLs = [
178  'currentmonth' => 86400,
179  'currentmonth1' => 86400,
180  'currentmonthname' => 86400,
181  'currentmonthnamegen' => 86400,
182  'currentmonthabbrev' => 86400,
183  'currentday' => 3600,
184  'currentday2' => 3600,
185  'currentdayname' => 3600,
186  'currentyear' => 86400,
187  'currenttime' => 3600,
188  'currenthour' => 3600,
189  'localmonth' => 86400,
190  'localmonth1' => 86400,
191  'localmonthname' => 86400,
192  'localmonthnamegen' => 86400,
193  'localmonthabbrev' => 86400,
194  'localday' => 3600,
195  'localday2' => 3600,
196  'localdayname' => 3600,
197  'localyear' => 86400,
198  'localtime' => 3600,
199  'localhour' => 3600,
200  'numberofarticles' => 3600,
201  'numberoffiles' => 3600,
202  'numberofedits' => 3600,
203  'currentweek' => 3600,
204  'currentdow' => 3600,
205  'localweek' => 3600,
206  'localdow' => 3600,
207  'numberofusers' => 3600,
208  'numberofactiveusers' => 3600,
209  'numberofpages' => 3600,
210  'currentversion' => 86400,
211  'currenttimestamp' => 3600,
212  'localtimestamp' => 3600,
213  'pagesinnamespace' => 3600,
214  'numberofadmins' => 3600,
215  'numberingroup' => 3600,
216  ];
217 
218  public static $mDoubleUnderscoreIDs = [
219  'notoc',
220  'nogallery',
221  'forcetoc',
222  'toc',
223  'noeditsection',
224  'newsectionlink',
225  'nonewsectionlink',
226  'hiddencat',
227  'index',
228  'noindex',
229  'staticredirect',
230  'notitleconvert',
231  'nocontentconvert',
232  ];
233 
234  public static $mSubstIDs = [
235  'subst',
236  'safesubst',
237  ];
238 
239  public static $mObjects = [];
240  public static $mDoubleUnderscoreArray = null;
241 
244  public function __construct( $id = 0, $syn = [], $cs = false ) {
245  $this->mId = $id;
246  $this->mSynonyms = (array)$syn;
247  $this->mCaseSensitive = $cs;
248  }
249 
257  public static function &get( $id ) {
258  if ( !isset( self::$mObjects[$id] ) ) {
259  $mw = new MagicWord();
260  $mw->load( $id );
261  self::$mObjects[$id] = $mw;
262  }
263  return self::$mObjects[$id];
264  }
265 
271  public static function getVariableIDs() {
272  if ( !self::$mVariableIDsInitialised ) {
273  # Get variable IDs
274  Hooks::run( 'MagicWordwgVariableIDs', [ &self::$mVariableIDs ] );
275  self::$mVariableIDsInitialised = true;
276  }
277  return self::$mVariableIDs;
278  }
279 
284  public static function getSubstIDs() {
285  return self::$mSubstIDs;
286  }
287 
294  public static function getCacheTTL( $id ) {
295  if ( array_key_exists( $id, self::$mCacheTTLs ) ) {
296  return self::$mCacheTTLs[$id];
297  } else {
298  return -1;
299  }
300  }
301 
307  public static function getDoubleUnderscoreArray() {
308  if ( is_null( self::$mDoubleUnderscoreArray ) ) {
309  Hooks::run( 'GetDoubleUnderscoreIDs', [ &self::$mDoubleUnderscoreIDs ] );
310  self::$mDoubleUnderscoreArray = new MagicWordArray( self::$mDoubleUnderscoreIDs );
311  }
312  return self::$mDoubleUnderscoreArray;
313  }
314 
319  public static function clearCache() {
320  self::$mObjects = [];
321  }
322 
329  public function load( $id ) {
331  $this->mId = $id;
332  $wgContLang->getMagic( $this );
333  if ( !$this->mSynonyms ) {
334  $this->mSynonyms = [ 'brionmademeputthishere' ];
335  throw new MWException( "Error: invalid magic word '$id'" );
336  }
337  }
338 
343  public function initRegex() {
344  // Sort the synonyms by length, descending, so that the longest synonym
345  // matches in precedence to the shortest
346  $synonyms = $this->mSynonyms;
347  usort( $synonyms, [ $this, 'compareStringLength' ] );
348 
349  $escSyn = [];
350  foreach ( $synonyms as $synonym ) {
351  // In case a magic word contains /, like that's going to happen;)
352  $escSyn[] = preg_quote( $synonym, '/' );
353  }
354  $this->mBaseRegex = implode( '|', $escSyn );
355 
356  $case = $this->mCaseSensitive ? '' : 'iu';
357  $this->mRegex = "/{$this->mBaseRegex}/{$case}";
358  $this->mRegexStart = "/^(?:{$this->mBaseRegex})/{$case}";
359  $this->mRegexStartToEnd = "/^(?:{$this->mBaseRegex})$/{$case}";
360  $this->mVariableRegex = str_replace( "\\$1", "(.*?)", $this->mRegex );
361  $this->mVariableStartToEndRegex = str_replace( "\\$1", "(.*?)",
362  "/^(?:{$this->mBaseRegex})$/{$case}" );
363  }
364 
375  public function compareStringLength( $s1, $s2 ) {
376  $l1 = strlen( $s1 );
377  $l2 = strlen( $s2 );
378  if ( $l1 < $l2 ) {
379  return 1;
380  } elseif ( $l1 > $l2 ) {
381  return -1;
382  } else {
383  return 0;
384  }
385  }
386 
392  public function getRegex() {
393  if ( $this->mRegex == '' ) {
394  $this->initRegex();
395  }
396  return $this->mRegex;
397  }
398 
406  public function getRegexCase() {
407  if ( $this->mRegex === '' ) {
408  $this->initRegex();
409  }
410 
411  return $this->mCaseSensitive ? '' : 'iu';
412  }
413 
419  public function getRegexStart() {
420  if ( $this->mRegex == '' ) {
421  $this->initRegex();
422  }
423  return $this->mRegexStart;
424  }
425 
432  public function getRegexStartToEnd() {
433  if ( $this->mRegexStartToEnd == '' ) {
434  $this->initRegex();
435  }
437  }
438 
444  public function getBaseRegex() {
445  if ( $this->mRegex == '' ) {
446  $this->initRegex();
447  }
448  return $this->mBaseRegex;
449  }
450 
458  public function match( $text ) {
459  return (bool)preg_match( $this->getRegex(), $text );
460  }
461 
469  public function matchStart( $text ) {
470  return (bool)preg_match( $this->getRegexStart(), $text );
471  }
472 
481  public function matchStartToEnd( $text ) {
482  return (bool)preg_match( $this->getRegexStartToEnd(), $text );
483  }
484 
495  public function matchVariableStartToEnd( $text ) {
496  $matches = [];
497  $matchcount = preg_match( $this->getVariableStartToEndRegex(), $text, $matches );
498  if ( $matchcount == 0 ) {
499  return null;
500  } else {
501  # multiple matched parts (variable match); some will be empty because of
502  # synonyms. The variable will be the second non-empty one so remove any
503  # blank elements and re-sort the indices.
504  # See also bug 6526
505 
506  $matches = array_values( array_filter( $matches ) );
507 
508  if ( count( $matches ) == 1 ) {
509  return $matches[0];
510  } else {
511  return $matches[1];
512  }
513  }
514  }
515 
524  public function matchAndRemove( &$text ) {
525  $this->mFound = false;
526  $text = preg_replace_callback(
527  $this->getRegex(),
528  [ &$this, 'pregRemoveAndRecord' ],
529  $text
530  );
531 
532  return $this->mFound;
533  }
534 
539  public function matchStartAndRemove( &$text ) {
540  $this->mFound = false;
541  $text = preg_replace_callback(
542  $this->getRegexStart(),
543  [ &$this, 'pregRemoveAndRecord' ],
544  $text
545  );
546 
547  return $this->mFound;
548  }
549 
555  public function pregRemoveAndRecord() {
556  $this->mFound = true;
557  return '';
558  }
559 
569  public function replace( $replacement, $subject, $limit = -1 ) {
570  $res = preg_replace(
571  $this->getRegex(),
572  StringUtils::escapeRegexReplacement( $replacement ),
573  $subject,
574  $limit
575  );
576  $this->mModified = $res !== $subject;
577  return $res;
578  }
579 
590  public function substituteCallback( $text, $callback ) {
591  $res = preg_replace_callback( $this->getVariableRegex(), $callback, $text );
592  $this->mModified = $res !== $text;
593  return $res;
594  }
595 
601  public function getVariableRegex() {
602  if ( $this->mVariableRegex == '' ) {
603  $this->initRegex();
604  }
605  return $this->mVariableRegex;
606  }
607 
613  public function getVariableStartToEndRegex() {
614  if ( $this->mVariableStartToEndRegex == '' ) {
615  $this->initRegex();
616  }
618  }
619 
627  public function getSynonym( $i ) {
628  return $this->mSynonyms[$i];
629  }
630 
634  public function getSynonyms() {
635  return $this->mSynonyms;
636  }
637 
644  public function getWasModified() {
645  return $this->mModified;
646  }
647 
661  public function replaceMultiple( $magicarr, $subject, &$result ) {
662  wfDeprecated( __METHOD__, '1.25' );
663  $search = [];
664  $replace = [];
665  foreach ( $magicarr as $id => $replacement ) {
666  $mw = MagicWord::get( $id );
667  $search[] = $mw->getRegex();
668  $replace[] = $replacement;
669  }
670 
671  $result = preg_replace( $search, $replace, $subject );
672  return $result !== $subject;
673  }
674 
682  public function addToArray( &$array, $value ) {
684  foreach ( $this->mSynonyms as $syn ) {
685  $array[$wgContLang->lc( $syn )] = $value;
686  }
687  }
688 
692  public function isCaseSensitive() {
693  return $this->mCaseSensitive;
694  }
695 
699  public function getId() {
700  return $this->mId;
701  }
702 }
array $mSynonyms
Definition: MagicWord.php:66
string $mVariableStartToEndRegex
Definition: MagicWord.php:87
static getVariableIDs()
Get an array of parser variable IDs.
Definition: MagicWord.php:271
the array() calling protocol came about after MediaWiki 1.4rc1.
static $mSubstIDs
Definition: MagicWord.php:234
getRegexStart()
Gets a regex matching the word, if it is at the string start.
Definition: MagicWord.php:419
getRegex()
Gets a regex representing matching the word.
Definition: MagicWord.php:392
__construct($id=0, $syn=[], $cs=false)
#@-
Definition: MagicWord.php:244
int $mId
#@-
Definition: MagicWord.php:63
getBaseRegex()
regex without the slashes and what not
Definition: MagicWord.php:444
$value
match($text)
Returns true if the text contains the word.
Definition: MagicWord.php:458
load($id)
Initialises this object with an ID.
Definition: MagicWord.php:329
static escapeRegexReplacement($string)
Escape a string to make it suitable for inclusion in a preg_replace() replacement parameter...
when a variable name is used in a it is silently declared as a new local masking the global
Definition: design.txt:93
string $mRegexStart
Definition: MagicWord.php:75
static $mVariableIDsInitialised
Definition: MagicWord.php:95
static getCacheTTL($id)
Allow external reads of TTL array.
Definition: MagicWord.php:294
isCaseSensitive()
Definition: MagicWord.php:692
string $mBaseRegex
Definition: MagicWord.php:81
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':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
Definition: hooks.txt:1796
static $mObjects
Definition: MagicWord.php:239
matchStart($text)
Returns true if the text starts with the word.
Definition: MagicWord.php:469
static getDoubleUnderscoreArray()
Get a MagicWordArray of double-underscore entities.
Definition: MagicWord.php:307
pregRemoveAndRecord()
Used in matchAndRemove()
Definition: MagicWord.php:555
$res
Definition: database.txt:21
static clearCache()
Clear the self::$mObjects variable For use in parser tests.
Definition: MagicWord.php:319
replaceMultiple($magicarr, $subject, &$result)
$magicarr is an associative array of (magic word ID => replacement) This method uses the php feature ...
Definition: MagicWord.php:661
string $mRegex
Definition: MagicWord.php:72
getWasModified()
Returns true if the last call to replace() or substituteCallback() returned a modified text...
Definition: MagicWord.php:644
wfDeprecated($function, $version=false, $component=false, $callerOffset=2)
Throws a warning that $function is deprecated.
static run($event, array $args=[], $deprecatedVersion=null)
Call hook functions defined in Hooks::register and $wgHooks.
Definition: Hooks.php:131
static $mDoubleUnderscoreArray
Definition: MagicWord.php:240
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
Class for handling an array of magic words.
replace($replacement, $subject, $limit=-1)
Replaces the word with something else.
Definition: MagicWord.php:569
matchStartAndRemove(&$text)
Definition: MagicWord.php:539
static & get($id)
Factory: creates an object representing an ID.
Definition: MagicWord.php:257
getVariableStartToEndRegex()
Matches the entire string, where $1 is a wildcard.
Definition: MagicWord.php:613
static getSubstIDs()
Get an array of parser substitution modifier IDs.
Definition: MagicWord.php:284
substituteCallback($text, $callback)
Variable handling: {{SUBST:xxx}} style words Calls back a function to determine what to replace xxx w...
Definition: MagicWord.php:590
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
addToArray(&$array, $value)
Adds all the synonyms of this MagicWord to an array, to allow quick lookup in a list of magic words...
Definition: MagicWord.php:682
string $mRegexStartToEnd
Definition: MagicWord.php:78
getSynonym($i)
Accesses the synonym list directly.
Definition: MagicWord.php:627
static $mVariableIDs
Definition: MagicWord.php:96
bool $mFound
Definition: MagicWord.php:93
matchStartToEnd($text)
Returns true if the text matched the word.
Definition: MagicWord.php:481
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
Definition: hooks.txt:1004
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
getRegexCase()
Gets the regexp case modifier to use, i.e.
Definition: MagicWord.php:406
initRegex()
Preliminary initialisation.
Definition: MagicWord.php:343
getVariableRegex()
Matches the word, where $1 is a wildcard.
Definition: MagicWord.php:601
bool $mCaseSensitive
Definition: MagicWord.php:69
matchVariableStartToEnd($text)
Returns NULL if there's no match, the value of $1 otherwise The return code is the matched string...
Definition: MagicWord.php:495
static $mCacheTTLs
Definition: MagicWord.php:177
static static $mDoubleUnderscoreIDs
Definition: MagicWord.php:218
compareStringLength($s1, $s2)
A comparison function that returns -1, 0 or 1 depending on whether the first string is longer...
Definition: MagicWord.php:375
matchAndRemove(&$text)
Returns true if the text matches the word, and alters the input string, removing all instances of the...
Definition: MagicWord.php:524
string $mVariableRegex
Definition: MagicWord.php:84
getRegexStartToEnd()
Gets a regex matching the word from start to end of a string.
Definition: MagicWord.php:432
bool $mModified
Definition: MagicWord.php:90
This class encapsulates "magic words" such as "#redirect", NOTOC, etc.
Definition: MagicWord.php:59
$matches