20 'wgExtraNamespaces' => [
22 12313 =>
'Dummy_talk',
23 12314 =>
'DummyNonText',
24 12315 =>
'DummyNonText_talk',
26 'wgNamespaceContentModels' => [
28 12314 =>
'testing-nontext',
32 'testing' =>
'DummyContentHandlerForTesting',
33 'testing-nontext' =>
'DummyNonTextContentHandler',
34 'testing-serialize-error' =>
'DummySerializeErrorContentHandler',
36 $this->tablesUsed = array_merge(
38 [
'change_tag',
'change_tag_def',
'logging' ]
43 $name =
'Help:ApiEditPageTest_testEdit';
49 'text' =>
'some text',
51 $apiResult = $apiResult[0];
54 $this->assertArrayHasKey(
'edit', $apiResult );
55 $this->assertArrayHasKey(
'result', $apiResult[
'edit'] );
56 $this->assertSame(
'Success', $apiResult[
'edit'][
'result'] );
58 $this->assertArrayHasKey(
'new', $apiResult[
'edit'] );
59 $this->assertArrayNotHasKey(
'nochange', $apiResult[
'edit'] );
61 $this->assertArrayHasKey(
'pageid', $apiResult[
'edit'] );
67 'text' =>
'some text',
70 $this->assertSame(
'Success', $data[0][
'edit'][
'result'] );
72 $this->assertArrayNotHasKey(
'new', $data[0][
'edit'] );
73 $this->assertArrayHasKey(
'nochange', $data[0][
'edit'] );
79 'text' =>
'different text'
82 $this->assertSame(
'Success', $data[0][
'edit'][
'result'] );
84 $this->assertArrayNotHasKey(
'new', $data[0][
'edit'] );
85 $this->assertArrayNotHasKey(
'nochange', $data[0][
'edit'] );
87 $this->assertArrayHasKey(
'oldrevid', $data[0][
'edit'] );
88 $this->assertArrayHasKey(
'newrevid', $data[0][
'edit'] );
89 $this->assertNotEquals(
90 $data[0][
'edit'][
'newrevid'],
91 $data[0][
'edit'][
'oldrevid'],
92 "revision id should change after edit"
102 'foo',
'append',
'bar',
"foobar"
105 'foo',
'prepend',
'bar',
"barfoo"
107 [ # 2: append to empty
page
108 '',
'append',
'foo',
"foo"
110 [ # 3: prepend to empty
page
111 '',
'prepend',
'foo',
"foo"
113 [ # 4: append to non-existing
page
114 null,
'append',
'foo',
"foo"
116 [ # 5: prepend to non-existing
page
117 null,
'prepend',
'foo',
"foo"
130 $name =
"Help:ApiEditPageTest_testEditAppend_$count";
133 if ( $text !==
null ) {
137 'text' => $text, ] );
139 $this->assertSame(
'Success', $re[
'edit'][
'result'] );
146 $op .
'text' => $append, ] );
148 $this->assertSame(
'Success', $re[
'edit'][
'result'] );
153 $this->assertNotNull(
$content,
'Page should have been created' );
157 $this->assertSame( $expected, $text );
164 $name =
'Help:ApiEditPageTest_testEditSection';
165 $page = WikiPage::factory( Title::newFromText(
$name ) );
166 $text =
"==section 1==\ncontent 1\n==section 2==\ncontent2";
168 $page->doEditContent( ContentHandler::makeContent( $text, $page->getTitle() ),
'summary' );
174 'text' =>
"==section 1==\nnew content 1",
176 $this->assertSame(
'Success', $re[
'edit'][
'result'] );
177 $newtext = WikiPage::factory( Title::newFromText(
$name ) )
180 $this->assertSame(
"==section 1==\nnew content 1\n\n==section 2==\ncontent2", $newtext );
190 $this->fail(
"Should have raised an ApiUsageException" );
192 $this->assertTrue( self::apiExceptionHasCode(
$e,
'nosuchsection' ) );
203 $name =
'Help:ApiEditPageTest_testEditNewSection';
206 $this->assertFalse( Title::newFromText(
$name )->exists() );
212 'summary' =>
'header',
215 $this->assertSame(
'Success', $re[
'edit'][
'result'] );
217 $text = WikiPage::factory( Title::newFromText(
$name ) )
220 $this->assertSame(
"== header ==\n\ntest", $text );
223 $this->assertTrue( Title::newFromText(
$name )->exists() );
229 'summary' =>
'header',
232 $this->assertSame(
'Success', $re2[
'edit'][
'result'] );
233 $text = WikiPage::factory( Title::newFromText(
$name ) )
236 $this->assertSame(
"== header ==\n\ntest\n\n== header ==\n\ntest", $text );
247 $name =
"Help:ApiEditPageTest_testEdit_redirect_$count";
249 $page = WikiPage::factory(
$title );
251 $rname =
"Help:ApiEditPageTest_testEdit_redirect_r$count";
252 $rtitle = Title::newFromText( $rname );
253 $rpage = WikiPage::factory( $rtitle );
257 "testing 1",
EDIT_NEW,
false, self::$users[
'sysop']->getUser() );
259 $baseTime = $page->getRevision()->getTimestamp();
263 "testing 1",
EDIT_NEW,
false, self::$users[
'sysop']->getUser() );
267 $rpage->doEditContent(
new WikitextContent(
"#REDIRECT [[$name]]\n\n[[Category:Test]]" ),
268 "testing 2",
EDIT_UPDATE, $page->getLatest(), self::$users[
'uploader']->getUser() );
275 'text' =>
'nix bar!',
276 'basetimestamp' => $baseTime,
281 $this->assertSame(
'Success', $re[
'edit'][
'result'],
282 "no problems expected when following redirect" );
293 $name =
"Help:ApiEditPageTest_testEdit_redirectText_$count";
295 $page = WikiPage::factory(
$title );
297 $rname =
"Help:ApiEditPageTest_testEdit_redirectText_r$count";
298 $rtitle = Title::newFromText( $rname );
299 $rpage = WikiPage::factory( $rtitle );
303 "testing 1",
EDIT_NEW,
false, self::$users[
'sysop']->getUser() );
305 $baseTime = $page->getRevision()->getTimestamp();
309 "testing 1",
EDIT_NEW,
false, self::$users[
'sysop']->getUser() );
313 $rpage->doEditContent(
new WikitextContent(
"#REDIRECT [[$name]]\n\n[[Category:Test]]" ),
314 "testing 2",
EDIT_UPDATE, $page->getLatest(), self::$users[
'uploader']->getUser() );
322 'text' =>
'nix bar!',
323 'basetimestamp' => $baseTime,
327 $this->fail(
'redirect-appendonly error expected' );
329 $this->assertTrue( self::apiExceptionHasCode( $ex,
'redirect-appendonly' ) );
338 $name =
"Help:ApiEditPageTest_testEditConflict_$count";
341 $page = WikiPage::factory(
$title );
345 "testing 1",
EDIT_NEW,
false, self::$users[
'sysop']->getUser() );
347 $baseTime = $page->getRevision()->getTimestamp();
351 "testing 2",
EDIT_UPDATE, $page->getLatest(), self::$users[
'uploader']->getUser() );
359 'text' =>
'nix bar!',
360 'basetimestamp' => $baseTime,
363 $this->fail(
'edit conflict expected' );
365 $this->assertTrue( self::apiExceptionHasCode( $ex,
'editconflict' ) );
377 $name =
"Help:ApiEditPageTest_testEditConflict_newSection_$count";
380 $page = WikiPage::factory(
$title );
384 "testing 1",
EDIT_NEW,
false, self::$users[
'sysop']->getUser() );
386 $baseTime = $page->getRevision()->getTimestamp();
390 "testing 2",
EDIT_UPDATE, $page->getLatest(), self::$users[
'uploader']->getUser() );
397 'text' =>
'nix bar!',
398 'basetimestamp' => $baseTime,
402 $this->assertSame(
'Success', $re[
'edit'][
'result'],
403 "no edit conflict expected here" );
417 $name =
"Help:ApiEditPageTest_testEditConflict_redirect_T43990_$count";
419 $page = WikiPage::factory(
$title );
421 $rname =
"Help:ApiEditPageTest_testEditConflict_redirect_T43990_r$count";
422 $rtitle = Title::newFromText( $rname );
423 $rpage = WikiPage::factory( $rtitle );
427 "testing 1",
EDIT_NEW,
false, self::$users[
'sysop']->getUser() );
432 "testing 1",
EDIT_NEW,
false, self::$users[
'sysop']->getUser() );
437 "testing 2",
EDIT_UPDATE, $page->getLatest(), self::$users[
'uploader']->getUser() );
444 'text' =>
'nix bar!',
449 $this->assertSame(
'Success', $re[
'edit'][
'result'],
450 "no edit conflict expected here" );
460 $dbw->update(
'revision',
461 [
'rev_timestamp' => $dbw->timestamp( $timestamp ) ],
468 $this->setExpectedException(
469 ApiUsageException::class,
470 'Direct editing via API is not supported for content model ' .
471 'testing used by Dummy:ApiEditPageTest_nonTextPageEdit'
476 'title' =>
'Dummy:ApiEditPageTest_nonTextPageEdit',
477 'text' =>
'{"animals":["kittens!"]}'
482 $name =
'DummyNonText:ApiEditPageTest_testNonTextEdit';
483 $data =
serialize(
'some bla bla text' );
494 $this->assertArrayHasKey(
'edit', $apiResult );
495 $this->assertArrayHasKey(
'result', $apiResult[
'edit'] );
496 $this->assertSame(
'Success', $apiResult[
'edit'][
'result'] );
498 $this->assertArrayHasKey(
'new', $apiResult[
'edit'] );
499 $this->assertArrayNotHasKey(
'nochange', $apiResult[
'edit'] );
501 $this->assertArrayHasKey(
'pageid', $apiResult[
'edit'] );
504 $page = WikiPage::factory( Title::newFromText(
$name ) );
505 $this->assertSame(
"testing-nontext", $page->getContentModel() );
506 $this->assertSame( $data, $page->getContent()->serialize() );
515 $name =
'Help:' . __FUNCTION__;
516 $uploader = self::$users[
'uploader']->getUser();
517 $sysop = self::$users[
'sysop']->getUser();
522 'text' =>
'some text',
523 ],
null, $sysop )[0];
526 $this->assertArrayHasKey(
'edit', $apiResult );
527 $this->assertArrayHasKey(
'result', $apiResult[
'edit'] );
528 $this->assertSame(
'Success', $apiResult[
'edit'][
'result'] );
529 $this->assertArrayHasKey(
'contentmodel', $apiResult[
'edit'] );
531 $this->assertSame(
'wikitext', $apiResult[
'edit'][
'contentmodel'] );
538 'contentmodel' =>
'json',
539 ],
null, $uploader )[0];
542 $this->assertArrayHasKey(
'edit', $apiResult );
543 $this->assertArrayHasKey(
'result', $apiResult[
'edit'] );
544 $this->assertSame(
'Success', $apiResult[
'edit'][
'result'] );
545 $this->assertArrayHasKey(
'contentmodel', $apiResult[
'edit'] );
546 $this->assertSame(
'json', $apiResult[
'edit'][
'contentmodel'] );
551 'undo' => $apiResult[
'edit'][
'newrevid']
552 ],
null, $sysop )[0];
555 $this->assertArrayHasKey(
'edit', $apiResult );
556 $this->assertArrayHasKey(
'result', $apiResult[
'edit'] );
557 $this->assertSame(
'Success', $apiResult[
'edit'][
'result'] );
558 $this->assertArrayHasKey(
'contentmodel', $apiResult[
'edit'] );
560 $this->assertSame(
'wikitext', $apiResult[
'edit'][
'contentmodel'] );
567 $name =
'Help:' . ucfirst( __FUNCTION__ );
572 'text' =>
'some text',
573 'contentmodel' =>
'wikitext',
574 'contentformat' =>
'text/x-wiki',
577 $this->assertTrue( Title::newFromText(
$name )->exists() );
581 $name =
'Help:' . ucfirst( __FUNCTION__ );
583 $this->setExpectedException( ApiUsageException::class,
584 'Unrecognized value for parameter "contentformat": nonexistent format.' );
590 'text' =>
'some text',
591 'contentformat' =>
'nonexistent format',
594 $this->assertFalse( Title::newFromText(
$name )->exists() );
599 $name =
'Help:' . ucfirst( __FUNCTION__ );
601 $this->setExpectedException( ApiUsageException::class,
602 'The requested format text/plain is not supported for content ' .
603 "model wikitext used by $name." );
609 'text' =>
'some text',
610 'contentmodel' =>
'wikitext',
611 'contentformat' =>
'text/plain',
614 $this->assertFalse( Title::newFromText(
$name )->exists() );
619 $name =
'Help:' . ucfirst( __FUNCTION__ );
621 $revId = $this->
editPage(
$name,
'Some text' )->value[
'revision']
625 $this->setExpectedException( ApiUsageException::class,
626 "There is no revision with ID $revId." );
649 $name =
'Help:' . ucfirst( __FUNCTION__ );
650 $titleObj = Title::newFromText(
$name );
652 $revId1 = $this->
editPage(
$name,
'1' )->value[
'revision']->getId();
653 $revId2 = $this->
editPage(
$name,
'2' )->value[
'revision']->getId();
654 $revId3 = $this->
editPage(
$name,
'3' )->value[
'revision']->getId();
658 $dbw->delete(
'revision', [
'rev_id' => $revId2 ], __METHOD__ );
659 $dbw->update(
'revision', [
'rev_parent_id' => $revId1 ],
660 [
'rev_id' => $revId3 ], __METHOD__ );
662 $this->setExpectedException( ApiUsageException::class,
663 "There is no revision with ID $revId2." );
669 'undoafter' => $revId2,
678 $name =
'Help:' . ucfirst( __FUNCTION__ );
679 $titleObj = Title::newFromText(
$name );
683 $revId1 = $this->
editPage(
$name,
'1' )->value[
'revision']->getId();
685 $revId2 = $this->
editPage(
$name,
'2' )->value[
'revision']->getId();
689 RequestContext::getMain(), $titleObj, [ $revId1 ] );
690 $list->setVisibility( [
692 'comment' =>
'Bye-bye',
695 $this->setExpectedException( ApiUsageException::class,
696 "There is no revision with ID $revId1." );
702 'undoafter' => $revId1,
711 $name =
'Help:' . ucfirst( __FUNCTION__ );
712 $titleObj = Title::newFromText(
$name );
716 $revId2 = $this->
editPage(
$name,
'2' )->value[
'revision']->getId();
718 $revId1 = $this->
editPage(
$name,
'1' )->value[
'revision']->getId();
724 [
'rev_timestamp' => $dbw->timestamp( time() - 86400 ) ],
725 [
'rev_id' => $revId1 ],
733 'undoafter' => $revId1,
736 $text = (
new WikiPage( $titleObj ) )->getContent()->getNativeData();
742 $this->assertSame(
'2', $text );
746 $name =
'Help:' . ucfirst( __FUNCTION__ );
748 $this->setExpectedException( ApiUsageException::class,
749 'The edit could not be undone due to conflicting intermediate edits.' );
753 $revId = $this->
editPage(
$name,
'2' )->value[
'revision']->getId();
763 $text = (
new WikiPage( Title::newFromText(
$name ) ) )->getContent()
765 $this->assertSame(
'3', $text );
773 $name =
'Help:' . ucfirst( __FUNCTION__ );
776 $revId1 = $this->
editPage(
$name,
'1' )->value[
'revision']->getId();
777 $revId2 = $this->
editPage(
$name,
'2' )->value[
'revision']->getId();
783 'undoafter' => $revId2,
786 $text = (
new WikiPage( Title::newFromText(
$name ) ) )->getContent()
788 $this->assertSame(
'1', $text );
792 $name =
'Help:' . ucfirst( __FUNCTION__ );
794 $this->
editPage(
"$name-1",
'Some text' );
795 $revId = $this->
editPage(
"$name-1",
'Some more text' )
796 ->value[
'revision']->getId();
798 $this->
editPage(
"$name-2",
'Some text' );
800 $this->setExpectedException( ApiUsageException::class,
801 "r$revId is not a revision of $name-2." );
805 'title' =>
"$name-2",
811 $name =
'Help:' . ucfirst( __FUNCTION__ );
813 $revId1 = $this->
editPage(
"$name-1",
'Some text' )
814 ->value[
'revision']->getId();
816 $revId2 = $this->
editPage(
"$name-2",
'Some text' )
817 ->value[
'revision']->getId();
819 $this->setExpectedException( ApiUsageException::class,
820 "r$revId1 is not a revision of $name-2." );
824 'title' =>
"$name-2",
826 'undoafter' => $revId1,
831 $name =
'Help:' . ucfirst( __FUNCTION__ );
833 $this->assertFalse( Title::newFromText(
$name )->exists() );
838 'text' =>
'Some text',
839 'md5' => md5(
'Some text' ),
842 $this->assertTrue( Title::newFromText(
$name )->exists() );
846 $name =
'Help:' . ucfirst( __FUNCTION__ );
853 'prependtext' =>
'Alert: ',
854 'md5' => md5(
'Alert: ' ),
858 ->getContent()->getNativeData();
859 $this->assertSame(
'Alert: Some text', $text );
863 $name =
'Help:' . ucfirst( __FUNCTION__ );
870 'appendtext' =>
' is nice',
871 'md5' => md5(
' is nice' ),
875 ->getContent()->getNativeData();
876 $this->assertSame(
'Some text is nice', $text );
880 $name =
'Help:' . ucfirst( __FUNCTION__ );
887 'prependtext' =>
'Alert: ',
888 'appendtext' =>
' is nice',
889 'md5' => md5(
'Alert: is nice' ),
893 ->getContent()->getNativeData();
894 $this->assertSame(
'Alert: Some text is nice', $text );
898 $name =
'Help:' . ucfirst( __FUNCTION__ );
900 $this->setExpectedException( ApiUsageException::class,
901 'The supplied MD5 hash was incorrect.' );
906 'text' =>
'Some text',
912 $name =
'Help:' . ucfirst( __FUNCTION__ );
914 $this->setExpectedException( ApiUsageException::class,
915 'The supplied MD5 hash was incorrect.' );
920 'prependtext' =>
'Some ',
921 'appendtext' =>
'text',
922 'md5' => md5(
'Some ' ),
927 $name =
'Help:' . ucfirst( __FUNCTION__ );
929 $this->setExpectedException( ApiUsageException::class,
930 'The supplied MD5 hash was incorrect.' );
935 'prependtext' =>
'Some ',
936 'appendtext' =>
'text',
937 'md5' => md5(
'text' ),
942 $name =
'Help:' . ucfirst( __FUNCTION__ );
944 $this->setExpectedException( ApiUsageException::class,
945 'The article you tried to create has been created already.' );
948 $this->assertTrue( Title::newFromText(
$name )->exists() );
954 'text' =>
'Some more text',
960 ->getContent()->getNativeData();
962 $this->assertSame(
'Some text', $text );
967 $name =
'Help:' . ucfirst( __FUNCTION__ );
969 $this->setExpectedException( ApiUsageException::class,
970 "The page you specified doesn't exist." );
972 $this->assertFalse( Title::newFromText(
$name )->exists() );
978 'text' =>
'Some text',
982 $this->assertFalse( Title::newFromText(
$name )->exists() );
992 $name =
'MediaWiki:' . ucfirst( __FUNCTION__ );
994 $this->setExpectedException( ApiUsageException::class,
995 "Can't append to pages using content model testing-nontext." );
1000 $model =
'testing-nontext';
1009 'appendtext' =>
'Some text',
1014 $name =
'MediaWiki:' . ucfirst( __FUNCTION__ );
1016 $this->assertFalse( Title::newFromText(
$name )->exists() );
1021 'appendtext' =>
'Some text',
1024 $this->assertTrue( Title::newFromText(
$name )->exists() );
1028 $name =
'MediaWiki:' . ucfirst( __FUNCTION__ );
1030 $this->setExpectedException( ApiUsageException::class,
1031 'Content serialization failed: Could not unserialize content' );
1036 $model =
'testing-serialize-error';
1045 'appendtext' =>
'Some text',
1050 $name =
'Help:' . ucfirst( __FUNCTION__ );
1057 'appendtext' =>
'== New section ==',
1062 ->getContent()->getNativeData();
1064 $this->assertSame(
"Initial content\n\n== New section ==", $text );
1068 $name =
'Help:' . ucfirst( __FUNCTION__ );
1070 $this->setExpectedException( ApiUsageException::class,
1071 'Sections are not supported for content model text.' );
1078 'appendtext' =>
'== New section ==',
1080 'contentmodel' =>
'text',
1085 $name =
'Help:' . ucfirst( __FUNCTION__ );
1092 'sectiontitle' =>
'My section',
1093 'appendtext' =>
'More content',
1099 $this->assertSame(
"Initial content\n\n== My section ==\n\nMore content",
1100 $page->getContent()->getNativeData() );
1101 $this->assertSame(
'/* My section */ new section',
1102 $page->getRevision()->getComment() );
1106 $name =
'Help:' . ucfirst( __FUNCTION__ );
1113 'appendtext' =>
'More content',
1115 'summary' =>
'Add new section',
1120 $this->assertSame(
"Initial content\n\n== Add new section ==\n\nMore content",
1121 $page->getContent()->getNativeData() );
1123 $this->assertSame(
'/* Add new section */ new section',
1124 $page->getRevision()->getComment() );
1128 $name =
'Help:' . ucfirst( __FUNCTION__ );
1135 'sectiontitle' =>
'My section',
1136 'appendtext' =>
'More content',
1138 'summary' =>
'Add new section',
1143 $this->assertSame(
"Initial content\n\n== My section ==\n\nMore content",
1144 $page->getContent()->getNativeData() );
1145 $this->assertSame(
'Add new section',
1146 $page->getRevision()->getComment() );
1150 $name =
'Help:' . ucfirst( __FUNCTION__ );
1153 "== Section 2 ==\n\nFascinating!" );
1158 'appendtext' =>
' and more content',
1163 ->getContent()->getNativeData();
1165 $this->assertSame(
"== Section 1 ==\n\nContent and more content\n\n" .
1166 "== Section 2 ==\n\nFascinating!", $text );
1170 $name =
'Help:' . ucfirst( __FUNCTION__ );
1172 $this->
editPage(
$name,
"Content\n\n== Section 1 ==\n\nFascinating!" );
1177 'appendtext' =>
' and more content',
1182 ->getContent()->getNativeData();
1184 $this->assertSame(
"Content and more content\n\n== Section 1 ==\n\n" .
1185 "Fascinating!", $text );
1189 $name =
'Help:' . ucfirst( __FUNCTION__ );
1191 $this->setExpectedException( ApiUsageException::class,
'There is no section 1.' );
1199 'appendtext' =>
' and more content',
1204 ->getContent()->getNativeData();
1206 $this->assertSame(
'Content', $text );
1211 $name =
'Help:' . ucfirst( __FUNCTION__ );
1213 $this->setExpectedException( ApiUsageException::class,
1214 'The "section" parameter must be a valid section ID or "new".' );
1221 'text' =>
'Different content',
1222 'section' =>
'It is unlikely that this is valid',
1226 ->getContent()->getNativeData();
1228 $this->assertSame(
'Content', $text );
1233 $name =
'Help:' . ucfirst( __FUNCTION__ );
1234 $this->setExpectedException( ApiUsageException::class,
1235 'The page has been deleted since you fetched its timestamp.' );
1237 $startTime = MWTimestamp::convert( TS_MW, time() - 1 );
1242 $pageObj->doDeleteArticle(
'Bye-bye' );
1244 $this->assertFalse( $pageObj->exists() );
1250 'text' =>
'Different text',
1251 'starttimestamp' => $startTime,
1254 $this->assertFalse( $pageObj->exists() );
1259 $name =
'Help:' . ucfirst( __FUNCTION__ );
1266 'text' =>
'Different text',
1270 $revisionStore = \MediaWiki\MediaWikiServices::getInstance()->getRevisionStore();
1271 $revision = $revisionStore->getRevisionByTitle( Title::newFromText(
$name ) );
1272 $this->assertTrue( $revision->isMinor() );
1276 $name =
'Help:' . ucfirst( __FUNCTION__ );
1278 $startTime = MWTimestamp::convert( TS_MW, time() - 1 );
1283 $pageObj->doDeleteArticle(
'Bye-bye' );
1285 $this->assertFalse( $pageObj->exists() );
1290 'text' =>
'Different text',
1291 'starttimestamp' => $startTime,
1295 $this->assertTrue( Title::newFromText(
$name )->exists() );
1299 $name =
'Help:' . ucfirst( __FUNCTION__ );
1300 $user = self::$users[
'sysop']->getUser();
1305 'text' =>
'Some text',
1309 $this->assertTrue( Title::newFromText(
$name )->exists() );
1310 $this->assertTrue(
$user->isWatched( Title::newFromText(
$name ) ) );
1314 $name =
'Help:' . ucfirst( __FUNCTION__ );
1315 $user = self::$users[
'sysop']->getUser();
1316 $titleObj = Title::newFromText(
$name );
1318 $user->addWatch( $titleObj );
1320 $this->assertFalse( $titleObj->exists() );
1321 $this->assertTrue(
$user->isWatched( $titleObj ) );
1326 'text' =>
'Some text',
1330 $this->assertTrue( $titleObj->exists() );
1331 $this->assertFalse(
$user->isWatched( $titleObj ) );
1336 $name =
'Help:' . ucfirst( __FUNCTION__ );
1338 ChangeTags::defineTag(
'custom tag' );
1343 'text' =>
'Some text',
1344 'tags' =>
'custom tag',
1345 ] )[0][
'edit'][
'newrevid'];
1348 $this->assertSame(
'custom tag', $dbw->selectField(
1349 'change_tag',
'ct_tag', [
'ct_rev_id' => $revId ], __METHOD__ ) );
1354 $name =
'Help:' . ucfirst( __FUNCTION__ );
1356 ChangeTags::defineTag(
'custom tag' );
1361 'text' =>
'Some text',
1362 'tags' =>
'custom tag',
1363 ] )[0][
'edit'][
'newrevid'];
1366 $this->assertSame(
'custom tag', $dbw->selectField(
1367 [
'change_tag',
'change_tag_def' ],
1369 [
'ct_rev_id' => $revId ],
1371 [
'change_tag_def' => [
'INNER JOIN',
'ctd_id = ct_tag_id' ] ]
1377 $name =
'Help:' . ucfirst( __FUNCTION__ );
1379 $this->setExpectedException( ApiUsageException::class,
1380 'You do not have permission to apply change tags along with your changes.' );
1382 $this->assertFalse( Title::newFromText(
$name )->exists() );
1384 ChangeTags::defineTag(
'custom tag' );
1386 [
'user' => [
'applychangetags' =>
true ] ] );
1391 'text' =>
'Some text',
1392 'tags' =>
'custom tag',
1395 $this->assertFalse( Title::newFromText(
$name )->exists() );
1400 $name =
'Help:' . ucfirst( __FUNCTION__ );
1402 $this->setExpectedException( ApiUsageException::class,
1403 'The modification you tried to make was aborted by an extension.' );
1406 'hook-APIEditBeforeSave-closure)' );
1418 'text' =>
'Some text',
1421 $this->assertFalse( Title::newFromText(
$name )->exists() );
1426 $name =
'Help:' . ucfirst( __FUNCTION__ );
1429 'hook-APIEditBeforeSave-closure)' );
1432 function ( $unused1, $unused2, &$r ) {
1433 $r[
'msg'] =
'Some message';
1440 'text' =>
'Some text',
1442 Wikimedia\restoreWarnings();
1444 $this->assertSame( [
'msg' =>
'Some message',
'result' =>
'Failure' ],
1447 $this->assertFalse( Title::newFromText(
$name )->exists() );
1451 $name =
'Help:' . ucfirst( __FUNCTION__ );
1455 $status->apiHookResult = [
'msg' =>
'A message for you!' ];
1462 'text' =>
'Some text',
1465 $this->assertFalse( Title::newFromText(
$name )->exists() );
1466 $this->assertSame( [
'edit' => [
'msg' =>
'A message for you!',
1467 'result' =>
'Failure' ] ],
$res[0] );
1471 $name =
'Help:' . ucfirst( __FUNCTION__ );
1473 $this->setExpectedException( ApiUsageException::class,
1474 'The modification you tried to make was aborted by an extension.' );
1486 'text' =>
'Some text',
1489 $this->assertFalse( Title::newFromText(
$name )->exists() );
1494 $name =
'Help:' . ucfirst( __FUNCTION__ );
1496 $this->setExpectedException( ApiUsageException::class,
1497 'You have been blocked from editing.' );
1499 $block =
new Block( [
1500 'address' => self::$users[
'sysop']->getUser()->getName(),
1501 'by' => self::$users[
'sysop']->getUser()->getId(),
1502 'reason' =>
'Capriciousness',
1503 'timestamp' =>
'19370101000000',
1504 'expiry' =>
'infinity',
1512 'text' =>
'Some text',
1516 self::$users[
'sysop']->getUser()->clearInstanceCache();
1521 $name =
'Help:' . ucfirst( __FUNCTION__ );
1523 $this->setExpectedException( ApiUsageException::class,
1524 'The wiki is currently in read-only mode.' );
1526 $svc = \MediaWiki\MediaWikiServices::getInstance()->getReadOnlyMode();
1527 $svc->setReason(
"Read-only for testing" );
1533 'text' =>
'Some text',
1536 $svc->setReason(
false );
1541 $name =
'File:' . ucfirst( __FUNCTION__ );
1543 $this->setExpectedException( ApiUsageException::class,
1544 "Anonymous users can't create image redirects." );
1549 'text' =>
'#REDIRECT [[File:Other file.png]]',
1550 ],
null,
new User() );
1554 $name =
'File:' . ucfirst( __FUNCTION__ );
1556 $this->setExpectedException( ApiUsageException::class,
1557 "You don't have permission to create image redirects." );
1560 [
'user' => [
'upload' =>
true ] ] );
1565 'text' =>
'#REDIRECT [[File:Other file.png]]',
1570 $name =
'Help:' . ucfirst( __FUNCTION__ );
1572 $this->setExpectedException( ApiUsageException::class,
1573 'The content you supplied exceeds the article size limit of 1 kilobyte.' );
1577 $text = str_repeat(
'!', 1025 );
1587 $name =
'Help:' . ucfirst( __FUNCTION__ );
1589 $this->setExpectedException( ApiUsageException::class,
1590 'The action you have requested is limited to users in the group: ' );
1592 $this->
setMwGlobals(
'wgRevokePermissions', [
'*' => [
'edit' =>
true ] ] );
1597 'text' =>
'Some text',
1598 ],
null,
new User() );
1602 $name =
'Help:' . ucfirst( __FUNCTION__ );
1604 $this->setExpectedException( ApiUsageException::class,
1605 "You don't have permission to change the content model of a page." );
1608 [
'user' => [
'editcontentmodel' =>
true ] ] );
1613 'text' =>
'Some text',
1614 'contentmodel' =>
'json',
Apache License January AND DISTRIBUTION Definitions License shall mean the terms and conditions for use
wfGetDB( $db, $groups=[], $wiki=false)
Get a Database object.
Tests for MediaWiki api.php?action=edit.
testUnsupportedContentFormat()
testEditSection()
Test editing of sections.
testIncorrectMd5PrependText()
testAppendToFirstSection()
testUndoToRevFromDifferentPage()
testProhibitedChangeContentModel()
testUndoAfterToRevFromDifferentPage()
testAppendNewSectionWithInvalidContentModel()
testAppendInMediaWikiNamespaceWithSerializationError()
testEditAbortedByEditPageHookWithNoResult()
testAppendInMediaWikiNamespace()
testEditConflict_T43990()
testUndoAfterContentModelChange()
This test verifies that after changing the content model of a page, undoing that edit via the API wil...
testAppendNewSectionWithTitle()
testEditWithTagNewBackend()
testIncorrectMd5AppendText()
testCheckDirectApiEditingDisallowed_forNonTextContent()
testCreateImageRedirectLoggedIn()
testEdit_redirectText()
Ensure we cannot edit through a redirect, if attempting to overwrite content.
testEditNewSection()
Test action=edit§ion=new Run it twice so we test adding a new section on a page that doesn't exis...
testAppendWithNonTextContentHandler()
Appending/prepending is currently only supported for TextContent.
testEditMalformedSection()
testMd5PrependAndAppendText()
testEditWithoutTagPermission()
testUndoWithSwappedRevisions()
Test undo when a revision with a higher id has an earlier timestamp.
testEditAbortedByHookWithCustomOutput()
testAppendNewSectionWithSummary()
testEditConflict_newSection()
Ensure that editing using section=new will prevent simple conflicts.
testReversedUndoAfter()
undoafter is supposed to be less than undo.
testEditAbortedByEditPageHookWithResult()
testEditWithStartTimestamp()
testProhibitedAnonymousEdit()
testEdit_redirect()
Ensure we can edit through a redirect, if adding a section.
testCreateImageRedirectAnon()
testEditAppend( $text, $op, $append, $expected)
provideEditAppend
testUndoAfterToHiddenRev()
Tests what happens if the undo parameter is a valid revision, but undoafter is hidden (rev_deleted).
testAppendToNonexistentSection()
testSupportsDirectApiEditing_withContentHandlerOverride()
testAppendNewSectionWithTitleAndSummary()
forceRevisionDate(WikiPage $page, $timestamp)
testUndoAfterToInvalidRev()
Tests what happens if the undo parameter is a valid revision, but the undoafter parameter doesn't ref...
static provideEditAppend()
testMismatchedContentFormat()
testCorrectContentFormat()
doApiRequestWithToken(array $params, array $session=null, User $user=null, $tokenType='auto')
Convenience function to access the token parameter of doApiRequest() more succinctly.
Exception used to abort API execution with an error.
static createList( $typeName, IContextSource $context, Title $title, array $ids)
Instantiate the appropriate list class for a given list of IDs.
Generic operation result class Has warning/error list, boolean status and arbitrary value.
Represents a title within MediaWiki.
The User object encapsulates all of the user-specific settings (user_id, name, rights,...
Class representing a MediaWiki article and history.
getLatest()
Get the page_latest field.
Content object for wiki text pages.
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
const MIGRATION_WRITE_BOTH
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. 'ImgAuthModifyHeaders':Executed just before a file is streamed to a user via img_auth.php, allowing headers to be modified beforehand. $title:LinkTarget object & $headers:HTTP headers(name=> value, names are case insensitive). Two headers get special handling:If-Modified-Since(value must be a valid HTTP date) and Range(must be of the form "bytes=(\d*-\d*)") will be honored when streaming the file. '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 'ImportHandleUnknownUser':When a user doesn 't exist locally, this hook is called to give extensions an opportunity to auto-create it. If the auto-creation is successful, return false. $name:User name '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 since 1.16! 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:Array with elements of the form "language:title" in the order that they will be output. & $linkFlags:Associative array mapping prefixed links to arrays of flags. Currently unused, but planned to provide support for marking individual language links in the UI, e.g. for featured articles. 'LanguageSelector':Hook to change the language selector available on a page. $out:The output page. $cssClassName:CSS class name of the language selector. 'LinkBegin':DEPRECATED since 1.28! Use HtmlPageLinkRendererBegin instead. Used when generating internal and interwiki links in Linker::link(), before processing starts. Return false to skip default processing and return $ret. See documentation for Linker::link() for details on the expected meanings of parameters. $skin:the Skin object $target:the Title that the link is pointing to & $html:the contents that the< a > tag should have(raw HTML) $result
Status::newGood()` to allow deletion, and then `return false` from the hook function. Ensure you consume the 'ChangeTagAfterDelete' hook to carry out custom deletion actions. $tag:name of the tag $user:user initiating the action & $status:Status object. See above. 'ChangeTagsListActive':Allows you to nominate which of the tags your extension uses are in active use. & $tags:list of all active tags. Append to this array. 'ChangeTagsAfterUpdateTags':Called after tags have been updated with the ChangeTags::updateTags function. Params:$addedTags:tags effectively added in the update $removedTags:tags effectively removed in the update $prevTags:tags that were present prior to the update $rc_id:recentchanges table id $rev_id:revision table id $log_id:logging table id $params:tag params $rc:RecentChange being tagged when the tagging accompanies the action, or null $user:User who performed the tagging when the tagging is subsequent to the action, or null 'ChangeTagsAllowedAdd':Called when checking if a user can add tags to a change. & $allowedTags:List of all the tags the user is allowed to add. Any tags the user wants to add( $addTags) that are not in this array will cause it to fail. You may add or remove tags to this array as required. $addTags:List of tags user intends to add. $user:User who is adding the tags. 'ChangeUserGroups':Called before user groups are changed. $performer:The User who will perform the change $user:The User whose groups will be changed & $add:The groups that will be added & $remove:The groups that will be removed 'Collation::factory':Called if $wgCategoryCollation is an unknown collation. $collationName:Name of the collation in question & $collationObject:Null. Replace with a subclass of the Collation class that implements the collation given in $collationName. 'ConfirmEmailComplete':Called after a user 's email has been confirmed successfully. $user:user(object) whose email is being confirmed 'ContentAlterParserOutput':Modify parser output for a given content object. Called by Content::getParserOutput after parsing has finished. Can be used for changes that depend on the result of the parsing but have to be done before LinksUpdate is called(such as adding tracking categories based on the rendered HTML). $content:The Content to render $title:Title of the page, as context $parserOutput:ParserOutput to manipulate 'ContentGetParserOutput':Customize parser output for a given content object, called by AbstractContent::getParserOutput. May be used to override the normal model-specific rendering of page content. $content:The Content to render $title:Title of the page, as context $revId:The revision ID, as context $options:ParserOptions for rendering. To avoid confusing the parser cache, the output can only depend on parameters provided to this hook function, not on global state. $generateHtml:boolean, indicating whether full HTML should be generated. If false, generation of HTML may be skipped, but other information should still be present in the ParserOutput object. & $output:ParserOutput, to manipulate or replace 'ContentHandlerDefaultModelFor':Called when the default content model is determined for a given title. May be used to assign a different model for that title. $title:the Title in question & $model:the model name. Use with CONTENT_MODEL_XXX constants. 'ContentHandlerForModelID':Called when a ContentHandler is requested for a given content model name, but no entry for that model exists in $wgContentHandlers. Note:if your extension implements additional models via this hook, please use GetContentModels hook to make them known to core. $modeName:the requested content model name & $handler:set this to a ContentHandler object, if desired. 'ContentModelCanBeUsedOn':Called to determine whether that content model can be used on a given page. This is especially useful to prevent some content models to be used in some special location. $contentModel:ID of the content model in question $title:the Title in question. & $ok:Output parameter, 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. 'ContribsPager::getQueryInfo':Before the contributions query is about to run & $pager:Pager object for contributions & $queryInfo:The query for the contribs Pager 'ContribsPager::reallyDoQuery':Called before really executing the query for My Contributions & $data:an array of results of all contribs queries $pager:The ContribsPager object hooked into $offset:Index offset, inclusive $limit:Exact query limit $descending:Query direction, false for ascending, true for descending 'ContributionsLineEnding':Called before a contributions HTML line is finished $page:SpecialPage object for contributions & $ret:the HTML line $row:the DB row for this line & $classes:the classes to add to the surrounding< li > & $attribs:associative array of other HTML attributes for the< li > element. Currently only data attributes reserved to MediaWiki are allowed(see Sanitizer::isReservedDataAttribute). 'ContributionsToolLinks':Change tool links above Special:Contributions $id:User identifier $title:User page title & $tools:Array of tool links $specialPage:SpecialPage instance for context and services. Can be either SpecialContributions or DeletedContributionsPage. Extensions should type hint against a generic SpecialPage though. 'ConvertContent':Called by AbstractContent::convert when a conversion to another content model is requested. Handler functions that modify $result should generally return false to disable further attempts at conversion. $content:The Content object to be converted. $toModel:The ID of the content model to convert to. $lossy:boolean indicating whether lossy conversion is allowed. & $result:Output parameter, in case the handler function wants to provide a converted Content object. Note that $result->getContentModel() must return $toModel. 'ContentSecurityPolicyDefaultSource':Modify the allowed CSP load sources. This affects all directives except for the script directive. If you want to add a script source, see ContentSecurityPolicyScriptSource hook. & $defaultSrc:Array of Content-Security-Policy allowed sources $policyConfig:Current configuration for the Content-Security-Policy header $mode:ContentSecurityPolicy::REPORT_ONLY_MODE or ContentSecurityPolicy::FULL_MODE depending on type of header 'ContentSecurityPolicyDirectives':Modify the content security policy directives. Use this only if ContentSecurityPolicyDefaultSource and ContentSecurityPolicyScriptSource do not meet your needs. & $directives:Array of CSP directives $policyConfig:Current configuration for the CSP header $mode:ContentSecurityPolicy::REPORT_ONLY_MODE or ContentSecurityPolicy::FULL_MODE depending on type of header 'ContentSecurityPolicyScriptSource':Modify the allowed CSP script sources. Note that you also have to use ContentSecurityPolicyDefaultSource if you want non-script sources to be loaded from whatever you add. & $scriptSrc:Array of CSP directives $policyConfig:Current configuration for the CSP header $mode:ContentSecurityPolicy::REPORT_ONLY_MODE or ContentSecurityPolicy::FULL_MODE depending on type of header 'CustomEditor':When invoking the page editor Return true to allow the normal editor to be used, or false if implementing a custom editor, e.g. for a special namespace, etc. $article:Article being edited $user:User performing the edit 'DatabaseOraclePostInit':Called after initialising an Oracle database $db:the DatabaseOracle object 'DeletedContribsPager::reallyDoQuery':Called before really executing the query for Special:DeletedContributions Similar to ContribsPager::reallyDoQuery & $data:an array of results of all contribs queries $pager:The DeletedContribsPager object hooked into $offset:Index offset, inclusive $limit:Exact query limit $descending:Query direction, false for ascending, true for descending 'DeletedContributionsLineEnding':Called before a DeletedContributions HTML line is finished. Similar to ContributionsLineEnding $page:SpecialPage object for DeletedContributions & $ret:the HTML line $row:the DB row for this line & $classes:the classes to add to the surrounding< li > & $attribs:associative array of other HTML attributes for the< li > element. Currently only data attributes reserved to MediaWiki are allowed(see Sanitizer::isReservedDataAttribute). 'DeleteUnknownPreferences':Called by the cleanupPreferences.php maintenance script to build a WHERE clause with which to delete preferences that are not known about. This hook is used by extensions that have dynamically-named preferences that should not be deleted in the usual cleanup process. For example, the Gadgets extension creates preferences prefixed with 'gadget-', and so anything with that prefix is excluded from the deletion. &where:An array that will be passed as the $cond parameter to IDatabase::select() to determine what will be deleted from the user_properties table. $db:The IDatabase object, useful for accessing $db->buildLike() etc. 'DifferenceEngineAfterLoadNewText':called in DifferenceEngine::loadNewText() after the new revision 's content has been loaded into the class member variable $differenceEngine->mNewContent but before returning true from this function. $differenceEngine:DifferenceEngine object 'DifferenceEngineLoadTextAfterNewContentIsLoaded':called in DifferenceEngine::loadText() after the new revision 's content has been loaded into the class member variable $differenceEngine->mNewContent but before checking if the variable 's value is null. This hook can be used to inject content into said class member variable. $differenceEngine:DifferenceEngine object 'DifferenceEngineMarkPatrolledLink':Allows extensions to change the "mark as patrolled" link which is shown both on the diff header as well as on the bottom of a page, usually wrapped in a span element which has class="patrollink". $differenceEngine:DifferenceEngine object & $markAsPatrolledLink:The "mark as patrolled" link HTML(string) $rcid:Recent change ID(rc_id) for this change(int) 'DifferenceEngineMarkPatrolledRCID':Allows extensions to possibly change the rcid parameter. For example the rcid might be set to zero due to the user being the same as the performer of the change but an extension might still want to show it under certain conditions. & $rcid:rc_id(int) of the change or 0 $differenceEngine:DifferenceEngine object $change:RecentChange object $user:User object representing the current user 'DifferenceEngineNewHeader':Allows extensions to change the $newHeader variable, which contains information about the new revision, such as the revision 's author, whether the revision was marked as a minor edit or not, etc. $differenceEngine:DifferenceEngine object & $newHeader:The string containing the various #mw-diff-otitle[1-5] divs, which include things like revision author info, revision comment, RevisionDelete link and more $formattedRevisionTools:Array containing revision tools, some of which may have been injected with the DiffRevisionTools hook $nextlink:String containing the link to the next revision(if any) $status
namespace and then decline to actually register it file or subcat img or subcat $title
Allows to change the fields on the form that will be generated $name
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
returning false will NOT prevent logging $e
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