MediaWiki  1.29.2
LinksUpdateTest.php
Go to the documentation of this file.
1 <?php
2 
9  protected static $testingPageId;
10 
11  function __construct( $name = null, array $data = [], $dataName = '' ) {
12  parent::__construct( $name, $data, $dataName );
13 
14  $this->tablesUsed = array_merge( $this->tablesUsed,
15  [
16  'interwiki',
17  'page_props',
18  'pagelinks',
19  'categorylinks',
20  'langlinks',
21  'externallinks',
22  'imagelinks',
23  'templatelinks',
24  'iwlinks',
25  'recentchanges',
26  ]
27  );
28  }
29 
30  protected function setUp() {
31  parent::setUp();
32  $dbw = wfGetDB( DB_MASTER );
33  $dbw->replace(
34  'interwiki',
35  [ 'iw_prefix' ],
36  [
37  'iw_prefix' => 'linksupdatetest',
38  'iw_url' => 'http://testing.com/wiki/$1',
39  'iw_api' => 'http://testing.com/w/api.php',
40  'iw_local' => 0,
41  'iw_trans' => 0,
42  'iw_wikiid' => 'linksupdatetest',
43  ]
44  );
45  $this->setMwGlobals( 'wgRCWatchCategoryMembership', true );
46  }
47 
48  public function addDBDataOnce() {
49  $res = $this->insertPage( 'Testing' );
50  self::$testingPageId = $res['id'];
51  $this->insertPage( 'Some_other_page' );
52  $this->insertPage( 'Template:TestingTemplate' );
53  }
54 
55  protected function makeTitleAndParserOutput( $name, $id ) {
57  $t->mArticleID = $id; # XXX: this is fugly
58 
59  $po = new ParserOutput();
60  $po->setTitleText( $t->getPrefixedText() );
61 
62  return [ $t, $po ];
63  }
64 
68  public function testUpdate_pagelinks() {
71  list( $t, $po ) = $this->makeTitleAndParserOutput( "Testing", self::$testingPageId );
72 
73  $po->addLink( Title::newFromText( "Foo" ) );
74  $po->addLink( Title::newFromText( "Special:Foo" ) ); // special namespace should be ignored
75  $po->addLink( Title::newFromText( "linksupdatetest:Foo" ) ); // interwiki link should be ignored
76  $po->addLink( Title::newFromText( "#Foo" ) ); // hash link should be ignored
77 
78  $update = $this->assertLinksUpdate(
79  $t,
80  $po,
81  'pagelinks',
82  'pl_namespace,
83  pl_title',
84  'pl_from = ' . self::$testingPageId,
85  [ [ NS_MAIN, 'Foo' ] ]
86  );
87  $this->assertArrayEquals( [
88  Title::makeTitle( NS_MAIN, 'Foo' ), // newFromText doesn't yield the same internal state....
89  ], $update->getAddedLinks() );
90 
91  $po = new ParserOutput();
92  $po->setTitleText( $t->getPrefixedText() );
93 
94  $po->addLink( Title::newFromText( "Bar" ) );
95  $po->addLink( Title::newFromText( "Talk:Bar" ) );
96 
97  $update = $this->assertLinksUpdate(
98  $t,
99  $po,
100  'pagelinks',
101  'pl_namespace,
102  pl_title',
103  'pl_from = ' . self::$testingPageId,
104  [
105  [ NS_MAIN, 'Bar' ],
106  [ NS_TALK, 'Bar' ],
107  ]
108  );
109  $this->assertArrayEquals( [
110  Title::makeTitle( NS_MAIN, 'Bar' ),
111  Title::makeTitle( NS_TALK, 'Bar' ),
112  ], $update->getAddedLinks() );
113  $this->assertArrayEquals( [
114  Title::makeTitle( NS_MAIN, 'Foo' ),
115  ], $update->getRemovedLinks() );
116  }
117 
121  public function testUpdate_externallinks() {
123  list( $t, $po ) = $this->makeTitleAndParserOutput( "Testing", self::$testingPageId );
124 
125  $po->addExternalLink( "http://testing.com/wiki/Foo" );
126 
127  $this->assertLinksUpdate(
128  $t,
129  $po,
130  'externallinks',
131  'el_to, el_index',
132  'el_from = ' . self::$testingPageId,
133  [
134  [ 'http://testing.com/wiki/Foo', 'http://com.testing./wiki/Foo' ],
135  ]
136  );
137  }
138 
142  public function testUpdate_categorylinks() {
144  $this->setMwGlobals( 'wgCategoryCollation', 'uppercase' );
145 
146  list( $t, $po ) = $this->makeTitleAndParserOutput( "Testing", self::$testingPageId );
147 
148  $po->addCategory( "Foo", "FOO" );
149 
150  $this->assertLinksUpdate(
151  $t,
152  $po,
153  'categorylinks',
154  'cl_to, cl_sortkey',
155  'cl_from = ' . self::$testingPageId,
156  [ [ 'Foo', "FOO\nTESTING" ] ]
157  );
158  }
159 
161  $this->setMwGlobals( 'wgCategoryCollation', 'uppercase' );
162 
163  $title = Title::newFromText( 'Testing' );
164  $wikiPage = new WikiPage( $title );
165  $wikiPage->doEditContent( new WikitextContent( '[[Category:Foo]]' ), 'added category' );
166  $this->runAllRelatedJobs();
167 
169  $title,
170  $wikiPage->getParserOutput( new ParserOptions() ),
171  Title::newFromText( 'Category:Foo' ),
172  [ [ 'Foo', '[[:Testing]] added to category' ] ]
173  );
174 
175  $wikiPage->doEditContent( new WikitextContent( '[[Category:Bar]]' ), 'replaced category' );
176  $this->runAllRelatedJobs();
177 
179  $title,
180  $wikiPage->getParserOutput( new ParserOptions() ),
181  Title::newFromText( 'Category:Foo' ),
182  [
183  [ 'Foo', '[[:Testing]] added to category' ],
184  [ 'Foo', '[[:Testing]] removed from category' ],
185  ]
186  );
187 
189  $title,
190  $wikiPage->getParserOutput( new ParserOptions() ),
191  Title::newFromText( 'Category:Bar' ),
192  [
193  [ 'Bar', '[[:Testing]] added to category' ],
194  ]
195  );
196  }
197 
199  $this->setMwGlobals( 'wgCategoryCollation', 'uppercase' );
200 
201  $templateTitle = Title::newFromText( 'Template:TestingTemplate' );
202  $templatePage = new WikiPage( $templateTitle );
203 
204  $wikiPage = new WikiPage( Title::newFromText( 'Testing' ) );
205  $wikiPage->doEditContent( new WikitextContent( '{{TestingTemplate}}' ), 'added template' );
206  $this->runAllRelatedJobs();
207 
208  $otherWikiPage = new WikiPage( Title::newFromText( 'Some_other_page' ) );
209  $otherWikiPage->doEditContent( new WikitextContent( '{{TestingTemplate}}' ), 'added template' );
210  $this->runAllRelatedJobs();
211 
213  $templateTitle,
214  $templatePage->getParserOutput( new ParserOptions() ),
215  Title::newFromText( 'Baz' ),
216  []
217  );
218 
219  $templatePage->doEditContent( new WikitextContent( '[[Category:Baz]]' ), 'added category' );
220  $this->runAllRelatedJobs();
221 
223  $templateTitle,
224  $templatePage->getParserOutput( new ParserOptions() ),
225  Title::newFromText( 'Baz' ),
226  [ [
227  'Baz',
228  '[[:Template:TestingTemplate]] added to category, ' .
229  '[[Special:WhatLinksHere/Template:TestingTemplate|this page is included within other pages]]'
230  ] ]
231  );
232  }
233 
237  public function testUpdate_iwlinks() {
239  list( $t, $po ) = $this->makeTitleAndParserOutput( "Testing", self::$testingPageId );
240 
241  $target = Title::makeTitleSafe( NS_MAIN, "Foo", '', 'linksupdatetest' );
242  $po->addInterwikiLink( $target );
243 
244  $this->assertLinksUpdate(
245  $t,
246  $po,
247  'iwlinks',
248  'iwl_prefix, iwl_title',
249  'iwl_from = ' . self::$testingPageId,
250  [ [ 'linksupdatetest', 'Foo' ] ]
251  );
252  }
253 
257  public function testUpdate_templatelinks() {
259  list( $t, $po ) = $this->makeTitleAndParserOutput( "Testing", self::$testingPageId );
260 
261  $po->addTemplate( Title::newFromText( "Template:Foo" ), 23, 42 );
262 
263  $this->assertLinksUpdate(
264  $t,
265  $po,
266  'templatelinks',
267  'tl_namespace,
268  tl_title',
269  'tl_from = ' . self::$testingPageId,
270  [ [ NS_TEMPLATE, 'Foo' ] ]
271  );
272  }
273 
277  public function testUpdate_imagelinks() {
279  list( $t, $po ) = $this->makeTitleAndParserOutput( "Testing", self::$testingPageId );
280 
281  $po->addImage( "Foo.png" );
282 
283  $this->assertLinksUpdate(
284  $t,
285  $po,
286  'imagelinks',
287  'il_to',
288  'il_from = ' . self::$testingPageId,
289  [ [ 'Foo.png' ] ]
290  );
291  }
292 
296  public function testUpdate_langlinks() {
297  $this->setMwGlobals( [
298  'wgCapitalLinks' => true,
299  ] );
300 
302  list( $t, $po ) = $this->makeTitleAndParserOutput( "Testing", self::$testingPageId );
303 
304  $po->addLanguageLink( Title::newFromText( "en:Foo" )->getFullText() );
305 
306  $this->assertLinksUpdate(
307  $t,
308  $po,
309  'langlinks',
310  'll_lang, ll_title',
311  'll_from = ' . self::$testingPageId,
312  [ [ 'En', 'Foo' ] ]
313  );
314  }
315 
319  public function testUpdate_page_props() {
320  global $wgPagePropsHaveSortkey;
321 
323  list( $t, $po ) = $this->makeTitleAndParserOutput( "Testing", self::$testingPageId );
324 
325  $fields = [ 'pp_propname', 'pp_value' ];
326  $expected = [];
327 
328  $po->setProperty( "bool", true );
329  $expected[] = [ "bool", true ];
330 
331  $po->setProperty( "float", 4.0 + 1.0 / 4.0 );
332  $expected[] = [ "float", 4.0 + 1.0 / 4.0 ];
333 
334  $po->setProperty( "int", -7 );
335  $expected[] = [ "int", -7 ];
336 
337  $po->setProperty( "string", "33 bar" );
338  $expected[] = [ "string", "33 bar" ];
339 
340  // compute expected sortkey values
341  if ( $wgPagePropsHaveSortkey ) {
342  $fields[] = 'pp_sortkey';
343 
344  foreach ( $expected as &$row ) {
345  $value = $row[1];
346 
347  if ( is_int( $value ) || is_float( $value ) || is_bool( $value ) ) {
348  $row[] = floatval( $value );
349  } else {
350  $row[] = null;
351  }
352  }
353  }
354 
355  $this->assertLinksUpdate(
356  $t, $po, 'page_props', $fields, 'pp_page = ' . self::$testingPageId, $expected );
357  }
358 
360  $this->setMwGlobals( 'wgPagePropsHaveSortkey', false );
361 
362  $this->testUpdate_page_props();
363  }
364 
365  // @todo test recursive, too!
366 
368  $table, $fields, $condition, array $expectedRows
369  ) {
370  $update = new LinksUpdate( $title, $parserOutput );
371 
372  $update->doUpdate();
373 
374  $this->assertSelect( $table, $fields, $condition, $expectedRows );
375  return $update;
376  }
377 
379  Title $pageTitle, ParserOutput $parserOutput, Title $categoryTitle, $expectedRows
380  ) {
381  $this->assertSelect(
382  'recentchanges',
383  'rc_title, rc_comment',
384  [
385  'rc_type' => RC_CATEGORIZE,
386  'rc_namespace' => NS_CATEGORY,
387  'rc_title' => $categoryTitle->getDBkey()
388  ],
389  $expectedRows
390  );
391  }
392 
393  private function runAllRelatedJobs() {
394  $queueGroup = JobQueueGroup::singleton();
395  while ( $job = $queueGroup->pop( 'refreshLinksPrioritized' ) ) {
396  $job->run();
397  $queueGroup->ack( $job );
398  }
399  while ( $job = $queueGroup->pop( 'categoryMembershipChange' ) ) {
400  $job->run();
401  $queueGroup->ack( $job );
402  }
403  }
404 }
ParserOptions
Set options of the Parser.
Definition: ParserOptions.php:33
LinksUpdateTest\setUp
setUp()
Definition: LinksUpdateTest.php:30
Title\newFromText
static newFromText( $text, $defaultNamespace=NS_MAIN)
Create a new Title from text, such as what one would find in a link.
Definition: Title.php:265
MediaWikiTestCase\assertArrayEquals
assertArrayEquals(array $expected, array $actual, $ordered=false, $named=false)
Assert that two arrays are equal.
Definition: MediaWikiTestCase.php:1498
ParserOutput
Definition: ParserOutput.php:24
LinksUpdateTest\testUpdate_templatelinks
testUpdate_templatelinks()
ParserOutput::addTemplate.
Definition: LinksUpdateTest.php:257
is
We use the convention $dbr for read and $dbw for write to help you keep track of whether the database object is a the world will explode Or to be a subsequent write query which succeeded on the master may fail when replicated to the slave due to a unique key collision Replication on the slave will stop and it may take hours to repair the database and get it back online Setting read_only in my cnf on the slave will avoid this but given the dire we prefer to have as many checks as possible We provide a but the wrapper functions like please read the documentation for except in special pages derived from QueryPage It s a common pitfall for new developers to submit code containing SQL queries which examine huge numbers of rows Remember that COUNT * is(N), counting rows in atable is like counting beans in a bucket.------------------------------------------------------------------------ Replication------------------------------------------------------------------------The largest installation of MediaWiki, Wikimedia, uses a large set ofslave MySQL servers replicating writes made to a master MySQL server. Itis important to understand the issues associated with this setup if youwant to write code destined for Wikipedia.It 's often the case that the best algorithm to use for a given taskdepends on whether or not replication is in use. Due to our unabashedWikipedia-centrism, we often just use the replication-friendly version, but if you like, you can use wfGetLB() ->getServerCount() > 1 tocheck to see if replication is in use.===Lag===Lag primarily occurs when large write queries are sent to the master.Writes on the master are executed in parallel, but they are executed inserial when they are replicated to the slaves. The master writes thequery to the binlog when the transaction is committed. The slaves pollthe binlog and start executing the query as soon as it appears. They canservice reads while they are performing a write query, but will not readanything more from the binlog and thus will perform no more writes. Thismeans that if the write query runs for a long time, the slaves will lagbehind the master for the time it takes for the write query to complete.Lag can be exacerbated by high read load. MediaWiki 's load balancer willstop sending reads to a slave when it is lagged by more than 30 seconds.If the load ratios are set incorrectly, or if there is too much loadgenerally, this may lead to a slave permanently hovering around 30seconds lag.If all slaves are lagged by more than 30 seconds, MediaWiki will stopwriting to the database. All edits and other write operations will berefused, with an error returned to the user. This gives the slaves achance to catch up. Before we had this mechanism, the slaves wouldregularly lag by several minutes, making review of recent editsdifficult.In addition to this, MediaWiki attempts to ensure that the user seesevents occurring on the wiki in chronological order. A few seconds of lagcan be tolerated, as long as the user sees a consistent picture fromsubsequent requests. This is done by saving the master binlog positionin the session, and then at the start of each request, waiting for theslave to catch up to that position before doing any reads from it. Ifthis wait times out, reads are allowed anyway, but the request isconsidered to be in "lagged slave mode". Lagged slave mode can bechecked by calling wfGetLB() ->getLaggedSlaveMode(). The onlypractical consequence at present is a warning displayed in the pagefooter.===Lag avoidance===To avoid excessive lag, queries which write large numbers of rows shouldbe split up, generally to write one row at a time. Multi-row INSERT ...SELECT queries are the worst offenders should be avoided altogether.Instead do the select first and then the insert.===Working with lag===Despite our best efforts, it 's not practical to guarantee a low-lagenvironment. Lag will usually be less than one second, but mayoccasionally be up to 30 seconds. For scalability, it 's very importantto keep load on the master low, so simply sending all your queries tothe master is not the answer. So when you have a genuine need forup-to-date data, the following approach is advised:1) Do a quick query to the master for a sequence number or timestamp 2) Run the full query on the slave and check if it matches the data you gotfrom the master 3) If it doesn 't, run the full query on the masterTo avoid swamping the master every time the slaves lag, use of thisapproach should be kept to a minimum. In most cases you should just readfrom the slave and let the user deal with the delay.------------------------------------------------------------------------ Lock contention------------------------------------------------------------------------Due to the high write rate on Wikipedia(and some other wikis), MediaWiki developers need to be very careful to structure their writesto avoid long-lasting locks. By default, MediaWiki opens a transactionat the first query, and commits it before the output is sent. Locks willbe held from the time when the query is done until the commit. So youcan reduce lock time by doing as much processing as possible before youdo your write queries.Often this approach is not good enough, and it becomes necessary toenclose small groups of queries in their own transaction. Use thefollowing syntax:$dbw=wfGetDB(DB_MASTER
LinksUpdateTest\testUpdate_iwlinks
testUpdate_iwlinks()
ParserOutput::addInterwikiLink.
Definition: LinksUpdateTest.php:237
WikiPage
Class representing a MediaWiki article and history.
Definition: WikiPage.php:36
LinksUpdateTest\testUpdate_pagelinks
testUpdate_pagelinks()
ParserOutput::addLink.
Definition: LinksUpdateTest.php:68
LinksUpdate
Class the manages updates of *_link tables as well as similar extension-managed tables.
Definition: LinksUpdate.php:34
LinksUpdateTest\addDBDataOnce
addDBDataOnce()
Stub.
Definition: LinksUpdateTest.php:48
NS_TEMPLATE
const NS_TEMPLATE
Definition: Defines.php:72
LinksUpdateTest\testUpdate_externallinks
testUpdate_externallinks()
ParserOutput::addExternalLink.
Definition: LinksUpdateTest.php:121
$res
$res
Definition: database.txt:21
$name
Allows to change the fields on the form that will be generated $name
Definition: hooks.txt:304
LinksUpdateTest\testOnAddingAndRemovingCategory_recentChangesRowIsAdded
testOnAddingAndRemovingCategory_recentChangesRowIsAdded()
Definition: LinksUpdateTest.php:160
php
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
NS_MAIN
const NS_MAIN
Definition: Defines.php:62
LinksUpdateTest\testUpdate_page_props
testUpdate_page_props()
ParserOutput::setProperty.
Definition: LinksUpdateTest.php:319
LinksUpdateTest\testUpdate_page_props_without_sortkey
testUpdate_page_props_without_sortkey()
Definition: LinksUpdateTest.php:359
Title\getDBkey
getDBkey()
Get the main part with underscores.
Definition: Title.php:901
$title
namespace and then decline to actually register it file or subcat img or subcat $title
Definition: hooks.txt:934
LinksUpdateTest\assertRecentChangeByCategorization
assertRecentChangeByCategorization(Title $pageTitle, ParserOutput $parserOutput, Title $categoryTitle, $expectedRows)
Definition: LinksUpdateTest.php:378
MediaWikiTestCase\assertSelect
assertSelect( $table, $fields, $condition, array $expectedRows)
Asserts that the given database query yields the rows given by $expectedRows.
Definition: MediaWikiTestCase.php:1437
wfGetDB
wfGetDB( $db, $groups=[], $wiki=false)
Get a Database object.
Definition: GlobalFunctions.php:3060
MediaWikiTestCase\setMwGlobals
setMwGlobals( $pairs, $value=null)
Definition: MediaWikiTestCase.php:658
Title\makeTitle
static makeTitle( $ns, $title, $fragment='', $interwiki='')
Create a new Title from a namespace index and a DB key.
Definition: Title.php:514
global
when a variable name is used in a it is silently declared as a new masking the global
Definition: design.txt:93
LinksUpdateTest\testUpdate_langlinks
testUpdate_langlinks()
ParserOutput::addLanguageLink.
Definition: LinksUpdateTest.php:296
NS_CATEGORY
const NS_CATEGORY
Definition: Defines.php:76
DB_MASTER
const DB_MASTER
Definition: defines.php:26
WikitextContent
Content object for wiki text pages.
Definition: WikitextContent.php:33
list
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
Definition: deferred.txt:11
LinksUpdateTest\makeTitleAndParserOutput
makeTitleAndParserOutput( $name, $id)
Definition: LinksUpdateTest.php:55
Title\makeTitleSafe
static makeTitleSafe( $ns, $title, $fragment='', $interwiki='')
Create a new Title from a namespace index and a DB key.
Definition: Title.php:538
$value
$value
Definition: styleTest.css.php:45
MediaWikiLangTestCase
Base class that store and restore the Language objects.
Definition: MediaWikiLangTestCase.php:6
LinksUpdateTest\assertLinksUpdate
assertLinksUpdate(Title $title, ParserOutput $parserOutput, $table, $fields, $condition, array $expectedRows)
Definition: LinksUpdateTest.php:367
LinksUpdateTest\testUpdate_categorylinks
testUpdate_categorylinks()
ParserOutput::addCategory.
Definition: LinksUpdateTest.php:142
LinksUpdateTest\__construct
__construct( $name=null, array $data=[], $dataName='')
Definition: LinksUpdateTest.php:11
LinksUpdateTest\testOnAddingAndRemovingCategoryToTemplates_embeddingPagesAreIgnored
testOnAddingAndRemovingCategoryToTemplates_embeddingPagesAreIgnored()
Definition: LinksUpdateTest.php:198
Title
Represents a title within MediaWiki.
Definition: Title.php:39
LinksUpdateTest\$testingPageId
static $testingPageId
Definition: LinksUpdateTest.php:9
MediaWikiTestCase\insertPage
insertPage( $pageName, $text='Sample page for unit test.', $namespace=null)
Insert a new page.
Definition: MediaWikiTestCase.php:953
LinksUpdateTest
LinksUpdate Database ^— make sure temporary tables are used.
Definition: LinksUpdateTest.php:8
$job
if(count( $args)< 1) $job
Definition: recompressTracked.php:47
JobQueueGroup\singleton
static singleton( $wiki=false)
Definition: JobQueueGroup.php:71
as
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
true
null means default in associative array with keys and values unescaped Should be merged with default with a value of false meaning to suppress the attribute in associative array with keys and values unescaped noclasses just before the function returns a value If you return true
Definition: hooks.txt:1956
NS_TALK
const NS_TALK
Definition: Defines.php:63
LinksUpdateTest\runAllRelatedJobs
runAllRelatedJobs()
Definition: LinksUpdateTest.php:393
RC_CATEGORIZE
const RC_CATEGORIZE
Definition: Defines.php:144
$t
$t
Definition: testCompression.php:67
LinksUpdateTest\testUpdate_imagelinks
testUpdate_imagelinks()
ParserOutput::addImage.
Definition: LinksUpdateTest.php:277
$parserOutput
this hook is for auditing only RecentChangesLinked and Watchlist RecentChangesLinked and Watchlist Do not use this to implement individual filters if they are compatible with the ChangesListFilter and ChangesListFilterGroup structure use sub classes of those in conjunction with the ChangesListSpecialPageStructuredFilters hook This hook can be used to implement filters that do not implement that or custom behavior that is not an individual filter e g Watchlist and Watchlist you will want to construct new ChangesListBooleanFilter or ChangesListStringOptionsFilter objects When constructing you specify which group they belong to You can reuse existing or create your you must register them with $special registerFilterGroup 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 $parserOutput
Definition: hooks.txt:1049
array
the array() calling protocol came about after MediaWiki 1.4rc1.