20 'wgExtraNamespaces' => $wgExtraNamespaces,
21 'wgNamespaceContentModels' => $wgNamespaceContentModels,
29 $wgNamespaceContentModels[12312] =
"testing";
32 MWNamespace::clearCaches();
39 MWNamespace::clearCaches();
48 public function testExtractSectionTitle( $section, $title ) {
50 $this->assertEquals( $title, $extracted );
56 "== Test ==\n\nJust a test section.",
60 "An initial section, no header.",
64 "An initial section with a fake heder (T34617)\n\n== Test == ??\nwtf",
68 "== Section ==\nfollowed by a fake == Non-section == ??\nnoooo",
72 "== Section== \t\r\n followed by whitespace (T37051)",
81 $dbw->update(
'revision',
82 [
'rev_timestamp' => $dbw->timestamp( $timestamp ) ],
97 $this->assertEquals( rtrim( $expected ), rtrim( $actual ), $msg );
125 protected function assertEdit( $title, $baseText, $user =
null, array $edit,
126 $expectedCode =
null, $expectedText =
null, $message =
null
128 if ( is_string( $title ) ) {
129 $ns = $this->getDefaultWikitextNS();
130 $title = Title::newFromText( $title, $ns );
132 $this->assertNotNull( $title );
134 if ( is_string( $user ) ) {
137 if ( $user->getId() === 0 ) {
138 $user->addToDatabase();
142 $page = WikiPage::factory( $title );
144 if ( $baseText !==
null ) {
145 $content = ContentHandler::makeContent( $baseText, $title );
146 $page->doEditContent( $content,
"base text for test" );
147 $this->forceRevisionDate( $page,
'20120101000000' );
151 $currentText = ContentHandler::getContentText( $page->getContent() );
153 # EditPage rtrim() the user input, so we alter our expected text
155 $this->assertEditedTextEquals( $baseText, $currentText );
158 if ( $user ==
null ) {
161 $this->setMwGlobals(
'wgUser', $user );
164 if ( !isset( $edit[
'wpEditToken'] ) ) {
165 $edit[
'wpEditToken'] = $user->getEditToken();
168 if ( !isset( $edit[
'wpEdittime'] ) ) {
169 $edit[
'wpEdittime'] = $page->exists() ? $page->getTimestamp() :
'';
172 if ( !isset( $edit[
'wpStarttime'] ) ) {
176 if ( !isset( $edit[
'wpUnicodeCheck'] ) ) {
182 $article =
new Article( $title );
183 $article->getContext()->setTitle( $title );
185 $ep->setContextTitle( $title );
186 $ep->importFormData(
$req );
188 $bot = isset( $edit[
'bot'] ) ? (bool)$edit[
'bot'] :
false;
193 $status = $ep->internalAttemptSave( $result, $bot );
195 if ( $expectedCode !==
null ) {
197 $this->assertEquals( $expectedCode,
$status->value,
198 "Expected result code mismatch. $message" );
201 $page = WikiPage::factory( $title );
203 if ( $expectedText !==
null ) {
205 $content = $page->getContent();
206 $text = ContentHandler::getContentText( $content );
208 # EditPage rtrim() the user input, so we alter our expected text
210 $this->assertEditedTextEquals( $expectedText, $text,
211 "Expected article text mismatch. $message" );
219 [
'expected article being created',
220 'EditPageTest_testCreatePage',
226 [
'expected article not being created if empty',
227 'EditPageTest_testCreatePage',
233 [
'expected MediaWiki: page being created',
240 [
'expected not-registered MediaWiki: page not being created if empty',
241 'MediaWiki:EditPageTest_testCreatePage',
247 [
'expected registered MediaWiki: page being created even if empty',
254 [
'expected registered MediaWiki: page whose default content is empty'
255 .
' not being created if empty',
256 'MediaWiki:Ipb-default-expiry',
262 [
'expected MediaWiki: page not being created if text equals default message',
269 [
'expected empty article being created',
270 'EditPageTest_testCreatePage',
285 $desc, $pageTitle, $user, $editText, $expectedCode, $expectedText, $ignoreBlank =
false
289 $this->setMwGlobals(
'wgHooks', [
290 'PageContentInsertComplete' => [
function (
292 $summary, $minor, $u1, $u2, &$flags,
Revision $revision
296 'PageContentSaveComplete' => [
function (
298 $summary, $minor, $u1, $u2, &$flags,
Revision $revision,
300 ) use ( &$checkId ) {
301 $checkId =
$status->value[
'revision']->getId();
306 $edit = [
'wpTextbox1' => $editText ];
307 if ( $ignoreBlank ) {
308 $edit[
'wpIgnoreBlankArticle'] = 1;
311 $page = $this->assertEdit( $pageTitle,
null, $user, $edit, $expectedCode, $expectedText, $desc );
317 $this->assertGreaterThan( 0, $latest,
"Page revision ID updated in object" );
318 $this->assertEquals( $latest, $checkId,
"Revision in Status for hook" );
327 $desc, $pageTitle, $user, $editText, $expectedCode, $expectedText, $ignoreBlank =
false
330 $this->setMwGlobals(
'wgHooks', [
331 'PageContentInsertComplete' => [
function (
333 $summary, $minor, $u1, $u2, &$flags,
Revision $revision
337 'PageContentSaveComplete' => [
function (
339 $summary, $minor, $u1, $u2, &$flags,
Revision $revision,
341 ) use ( &$checkIds ) {
342 $checkIds[] =
$status->value[
'revision']->getId();
349 $edit = [
'wpTextbox1' => $editText ];
350 if ( $ignoreBlank ) {
351 $edit[
'wpIgnoreBlankArticle'] = 1;
354 $page = $this->assertEdit(
355 $pageTitle,
null, $user, $edit, $expectedCode, $expectedText, $desc );
357 $pageTitle2 = (
string)$pageTitle .
'/x';
358 $page2 = $this->assertEdit(
359 $pageTitle2,
null, $user, $edit, $expectedCode, $expectedText, $desc );
363 $this->assertEquals( 0, DeferredUpdates::pendingUpdatesCount(),
'No deferred updates' );
369 $this->assertGreaterThan( 0, $latest,
"Page #1 revision ID updated in object" );
370 $this->assertEquals( $latest, $checkIds[0],
"Revision #1 in Status for hook" );
372 $latest2 = $page2->getLatest();
373 $page2->doDeleteArticleReal( $pageTitle2 );
375 $this->assertGreaterThan( 0, $latest2,
"Page #2 revision ID updated in object" );
376 $this->assertEquals( $latest2, $checkIds[1],
"Revision #2 in Status for hook" );
383 $this->setMwGlobals(
'wgHooks', [
384 'PageContentInsertComplete' => [
function (
386 $summary, $minor, $u1, $u2, &$flags,
Revision $revision
390 'PageContentSaveComplete' => [
function (
392 $summary, $minor, $u1, $u2, &$flags,
Revision $revision,
394 ) use ( &$checkIds ) {
395 $checkIds[] =
$status->value[
'revision']->getId();
402 'wpTextbox1' => $text,
403 'wpSummary' =>
'first update',
406 $page = $this->assertEdit(
'EditPageTest_testUpdatePage',
"zero",
null, $edit,
408 "expected successfull update with given text" );
409 $this->assertGreaterThan( 0, $checkIds[0],
"First event rev ID set" );
411 $this->forceRevisionDate( $page,
'20120101000000' );
415 'wpTextbox1' => $text,
416 'wpSummary' =>
'second update',
419 $this->assertEdit(
'EditPageTest_testUpdatePage',
null,
null, $edit,
421 "expected successfull update with given text" );
422 $this->assertGreaterThan( 0, $checkIds[1],
"Second edit hook rev ID set" );
423 $this->assertGreaterThan( $checkIds[0], $checkIds[1],
"Second event rev ID is higher" );
429 'wpTextbox1' => $text,
430 'wpSummary' =>
'first update',
433 $page = $this->assertEdit(
'EditPageTest_testTrxUpdatePage',
"zero",
null, $edit,
435 "expected successfull update with given text" );
437 $this->forceRevisionDate( $page,
'20120101000000' );
440 $this->setMwGlobals(
'wgHooks', [
441 'PageContentSaveComplete' => [
function (
443 $summary, $minor, $u1, $u2, &$flags,
Revision $revision,
445 ) use ( &$checkIds ) {
446 $checkIds[] =
$status->value[
'revision']->getId();
455 'wpTextbox1' => $text,
456 'wpSummary' =>
'second update',
459 $this->assertEdit(
'EditPageTest_testTrxUpdatePage',
null,
null, $edit,
461 "expected successfull update with given text" );
465 'wpTextbox1' => $text,
466 'wpSummary' =>
'third update',
469 $this->assertEdit(
'EditPageTest_testTrxUpdatePage',
null,
null, $edit,
471 "expected successfull update with given text" );
475 $this->assertGreaterThan( 0, $checkIds[0],
"First event rev ID set" );
476 $this->assertGreaterThan( 0, $checkIds[1],
"Second edit hook rev ID set" );
477 $this->assertGreaterThan( $checkIds[0], $checkIds[1],
"Second event rev ID is higher" );
490 $sectionOne =
'== one ==
494 $newSection =
'== new section ==
499 $textWithNewSectionOne = preg_replace(
500 '/== one ==.*== two ==/ms',
501 "$sectionOne\n== two ==", $text
504 $textWithNewSectionAdded =
"$text\n$newSection";
519 'replace first section',
520 $textWithNewSectionOne,
528 $textWithNewSectionAdded,
539 'wpTextbox1' => $text,
540 'wpSummary' => $summary,
544 $this->assertEdit(
'EditPageTest_testSectionEdit',
$base,
null, $edit,
546 "expected successfull update of section" );
552 $tests[] = [ # 0:
plain conflict
553 "Elmo", # base edit user
554 "one\n\ntwo\n\nthree\n",
557 'wpTextbox1
' => "ONE\n\ntwo\n\nthree\n",
561 'wpTextbox1' =>
"(one)\n\ntwo\n\nthree\n",
564 "ONE\n\ntwo\n\nthree\n", # expected text
565 'expected edit conflict', #
message
568 $tests[] = [ # 1: successful
merge
569 "Elmo", # base edit user
570 "one\n\ntwo\n\nthree\n",
573 'wpTextbox1
' => "ONE\n\ntwo\n\nthree\n",
577 'wpTextbox1' =>
"one\n\ntwo\n\nTHREE\n",
580 "ONE\n\ntwo\n\nTHREE\n", # expected text
581 'expected automatic merge', #
message
585 $text .=
"== first section ==\n\n";
586 $text .=
"one\n\ntwo\n\nthree\n\n";
587 $text .=
"== second section ==\n\n";
588 $text .=
"four\n\nfive\n\nsix\n\n";
591 $section = preg_replace(
'/.*(== first section ==.*)== second section ==.*/sm',
'$1', $text );
594 $expected = str_replace(
'one',
'ONE', str_replace(
'three',
'THREE', $text ) );
596 $tests[] = [ # 2:
merge in section
597 "Elmo", # base edit user
601 'wpTextbox1
' => str_replace( 'one
', 'ONE
', $section ),
606 'wpTextbox1' => str_replace(
'three',
'THREE',
$section ),
610 $expected, # expected text
611 'expected automatic section merge', #
message
615 $testsWithAdam = array_map(
function ( $test ) {
620 $testsWithBerta = array_map(
function ( $test ) {
625 return array_merge( $tests, $testsWithAdam, $testsWithBerta );
633 $expectedCode, $expectedText, $message =
null
635 $this->markTestSkippedIfNoDiff3();
638 $ns = $this->getDefaultWikitextNS();
639 $title = Title::newFromText(
'EditPageTest_testAutoMerge', $ns );
640 $page = WikiPage::factory( $title );
642 if ( $page->exists() ) {
643 $page->doDeleteArticle(
"clean slate for testing" );
647 'wpTextbox1' => $text,
650 $page = $this->assertEdit(
'EditPageTest_testAutoMerge',
null,
651 $baseUser, $baseEdit,
null,
null, __METHOD__ );
653 $this->forceRevisionDate( $page,
'20120101000000' );
655 $edittime = $page->getTimestamp();
658 if ( !isset( $adamsEdit[
'wpStarttime'] ) ) {
659 $adamsEdit[
'wpStarttime'] = 1;
662 if ( !isset( $bertasEdit[
'wpStarttime'] ) ) {
663 $bertasEdit[
'wpStarttime'] = 2;
676 $adamsEdit[
'wpStarttime'] = $adamsTime;
677 $bertasEdit[
'wpStarttime'] = $bertasTime;
679 $adamsEdit[
'wpSummary'] =
'Adam\'s edit';
680 $bertasEdit[
'wpSummary'] =
'Bertas\'s edit';
682 $adamsEdit[
'wpEdittime'] = $edittime;
683 $bertasEdit[
'wpEdittime'] = $edittime;
686 $this->assertEdit(
'EditPageTest_testAutoMerge',
null,
'Adam', $adamsEdit,
690 $this->assertEdit(
'EditPageTest_testAutoMerge',
null,
'Berta', $bertasEdit,
691 $expectedCode, $expectedText, $message );
698 $title = Title::newFromText(
'Dummy:NonTextPageForEditPage' );
699 $page = WikiPage::factory( $title );
701 $article =
new Article( $title );
702 $article->getContext()->setTitle( $title );
704 $ep->setContextTitle( $title );
709 'wpTextbox1' =>
serialize(
'non-text content' ),
710 'wpEditToken' => $user->getEditToken(),
717 $ep->importFormData(
$req );
719 $this->setExpectedException(
721 'This content model is not supported: testing'
724 $ep->internalAttemptSave( $result,
false );
$wgExtraNamespaces
Additional namespaces.
$wgNamespaceContentModels
Associative array mapping namespace IDs to the name of the content model pages in that namespace shou...
$wgContentHandlers
Plugins for page content model handling.
wfTimestampNow()
Convenience function; returns MediaWiki timestamp for the present time.
wfGetDB( $db, $groups=[], $wiki=false)
Get a Database object.
wfTimestamp( $outputtype=TS_UNIX, $ts=0)
Get a timestamp string in one of various formats.
as see the revision history and available at free of to any person obtaining a copy of this software and associated documentation to deal in the Software without including without limitation the rights to merge
Class for viewing MediaWiki article and history.
testAutoMerge( $baseUser, $text, $adamsEdit, $bertasEdit, $expectedCode, $expectedText, $message=null)
provideAutoMerge EditPage
assertEdit( $title, $baseText, $user=null, array $edit, $expectedCode=null, $expectedText=null, $message=null)
Performs an edit and checks the result.
testCreatePage( $desc, $pageTitle, $user, $editText, $expectedCode, $expectedText, $ignoreBlank=false)
provideCreatePages EditPage
forceRevisionDate(WikiPage $page, $timestamp)
assertEditedTextEquals( $expected, $actual, $msg='')
User input text is passed to rtrim() by edit page.
testCheckDirectEditingDisallowed_forNonTextContent()
@depends testAutoMerge
static provideCreatePages()
static provideSectionEdit()
static provideAutoMerge()
testSectionEdit( $base, $section, $text, $summary, $expected)
provideSectionEdit EditPage
testCreatePageTrx( $desc, $pageTitle, $user, $editText, $expectedCode, $expectedText, $ignoreBlank=false)
provideCreatePages EditPage
static provideExtractSectionTitle()
The edit page/HTML interface (split from Article) The actual database and text munging is still in Ar...
const AS_CONFLICT_DETECTED
Status: (non-resolvable) edit conflict.
const AS_BLANK_ARTICLE
Status: user tried to create a blank page and wpIgnoreBlankArticle == false.
static extractSectionTitle( $text)
Extract the section title from current section text, if any.
const AS_SUCCESS_UPDATE
Status: Article successfully updated.
const AS_SUCCESS_NEW_ARTICLE
Status: Article successfully created.
const UNICODE_CHECK
Used for Unicode support checks.
WebRequest clone which takes values from a provided array.
Generic operation result class Has warning/error list, boolean status and arbitrary value.
The User object encapsulates all of the user-specific settings (user_id, name, rights,...
static newFromName( $name, $validate='valid')
Static factory method for creation from username.
Class representing a MediaWiki article and history.
getLatest()
Get the page_latest field.
doDeleteArticleReal( $reason, $suppress=false, $u1=null, $u2=null, &$error='', User $deleter=null, $tags=[], $logsubtype='delete')
Back-end article deletion Deletes the article with database consistency, writes logs,...
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
when a variable name is used in a function
this hook is for auditing only $req
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. '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
This code would result in ircNotify being run twice when an article is and once for brion Hooks can return three possible true was required This is the default since MediaWiki *some string
either a unescaped string or a HtmlArmor object after in associative array form externallinks including delete and has completed for all link tables whether this was an auto creation default is conds Array Extra conditions for the No matching items in log is displayed if loglist is empty msgKey Array If you want a nice box with a message
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
usually copyright or history_copyright This message must be in HTML not wikitext if the section is included from a template $section
processing should stop and the error should be shown to the user * false
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
Base interface for content objects.
you have access to all of the normal MediaWiki so you can get a DB use the cache