Go to the documentation of this file.
46 $this->
getMain()->setCacheMode(
'anon-public-user-private' );
60 $titleProvided =
false;
64 $titleProvided =
true;
71 $model =
$params[
'contentmodel'];
72 $format =
$params[
'contentformat'];
74 $prop = array_flip(
$params[
'prop'] );
76 if ( isset(
$params[
'section'] ) ) {
77 $this->section =
$params[
'section'];
78 if ( !preg_match(
'/^((T-)?\d+|new)$/', $this->section ) ) {
82 $this->section =
false;
92 $needContent = isset( $prop[
'wikitext'] ) ||
93 isset( $prop[
'parsetree'] ) ||
$params[
'generatexml'];
98 if ( !is_null( $oldid ) || !is_null( $pageid ) || !is_null( $page ) ) {
99 if ( $this->section ===
'new' ) {
100 $this->
dieWithError(
'apierror-invalidparammix-parse-new-section',
'invalidparammix' );
102 if ( !is_null( $oldid ) ) {
106 $this->
dieWithError( [
'apierror-nosuchrevid', $oldid ] );
112 [
'apierror-permissiondenied', $this->
msg(
'action-deletedtext' ) ]
116 $titleObj =
$rev->getTitle();
121 $pageObj, $popts, $suppressCache, $pageid,
$rev, $needContent
128 if ( !is_null( $pageid ) ) {
129 $reqParams[
'pageids'] = $pageid;
131 $reqParams[
'titles'] = $page;
137 $redirValues = $pageSet->getRedirectTitlesAsResult( $this->
getResult() );
140 foreach ( $pageSet->getRedirectTitles()
as $title ) {
141 $to =
$title->getFullText();
143 $pageParams = [
'title' => $to ];
144 } elseif ( !is_null( $pageid ) ) {
145 $pageParams = [
'pageid' => $pageid ];
147 $pageParams = [
'title' => $page ];
151 $titleObj = $pageObj->getTitle();
152 if ( !$titleObj || !$titleObj->exists() ) {
159 if ( isset( $prop[
'revid'] ) ) {
160 $oldid = $pageObj->getLatest();
165 $pageObj, $popts, $suppressCache, $pageid,
null, $needContent
170 if ( !$titleObj || $titleObj->isExternal() ) {
174 if ( $revid !==
null ) {
177 $this->
dieWithError( [
'apierror-nosuchrevid', $revid ] );
179 $pTitleObj = $titleObj;
180 $titleObj =
$rev->getTitle();
181 if ( $titleProvided ) {
182 if ( !$titleObj->equals( $pTitleObj ) ) {
189 $titleProvided =
true;
193 if ( $titleObj->canExist() ) {
202 $textProvided = !is_null( $text );
204 if ( !$textProvided ) {
205 if ( $titleProvided && ( $prop ||
$params[
'generatexml'] ) ) {
206 if ( $revid !==
null ) {
207 $this->
addWarning(
'apiwarn-parse-revidwithouttext' );
209 $this->
addWarning(
'apiwarn-parse-titlewithouttext' );
218 if ( $textProvided && !$titleProvided && is_null( $model ) ) {
220 $this->
addWarning( [
'apiwarn-parse-nocontentmodel', $model ] );
227 'wrap' =>
ApiMessage::create(
'apierror-contentserializationexception',
'parseerror' )
231 if ( $this->section !==
false ) {
232 if ( $this->section ===
'new' ) {
234 if ( !is_null(
$params[
'sectiontitle'] ) &&
$params[
'sectiontitle'] !==
'' ) {
243 $this->pstContent = $this->
content->preSaveTransform( $titleObj, $this->
getUser(), $popts );
248 if ( $this->contentIsDeleted ) {
249 $result_array[
'textdeleted'] =
true;
251 if ( $this->contentIsSuppressed ) {
252 $result_array[
'textsuppressed'] =
true;
254 $result_array[
'text'] = $this->pstContent->serialize( $format );
256 if ( isset( $prop[
'wikitext'] ) ) {
257 $result_array[
'wikitext'] = $this->
content->serialize( $format );
260 if ( !is_null(
$params[
'summary'] ) ||
261 ( !is_null(
$params[
'sectiontitle'] ) && $this->section ===
'new' )
274 $p_result = $this->pstContent->getParserOutput( $titleObj, $revid, $popts );
276 $p_result = $this->
content->getParserOutput( $titleObj, $revid, $popts );
282 $result_array[
'title'] = $titleObj->getPrefixedText();
283 $result_array[
'pageid'] = $pageid ?: $pageObj->getId();
284 if ( $this->contentIsDeleted ) {
285 $result_array[
'textdeleted'] =
true;
287 if ( $this->contentIsSuppressed ) {
288 $result_array[
'textsuppressed'] =
true;
292 $p_result->setTOCEnabled(
false );
295 if ( isset(
$params[
'useskin'] ) ) {
296 $factory = MediaWikiServices::getInstance()->getSkinFactory();
303 if (
$skin || isset( $prop[
'headhtml'] ) || isset( $prop[
'categorieshtml'] ) ) {
328 $outputPage->addParserOutputMetadata( $p_result );
333 foreach (
$skin->getDefaultModules()
as $group ) {
334 $outputPage->addModules( $group );
339 if ( !is_null( $oldid ) ) {
340 $result_array[
'revid'] = intval( $oldid );
343 if (
$params[
'redirects'] && !is_null( $redirValues ) ) {
344 $result_array[
'redirects'] = $redirValues;
347 if ( isset( $prop[
'text'] ) ) {
348 $result_array[
'text'] = $p_result->getText();
352 if ( !is_null(
$params[
'summary'] ) ||
353 ( !is_null(
$params[
'sectiontitle'] ) && $this->section ===
'new' )
359 if ( isset( $prop[
'langlinks'] ) ) {
361 $langlinks = $outputPage->getLanguageLinks();
363 $langlinks = $p_result->getLanguageLinks();
367 if (
$params[
'effectivelanglinks'] ) {
369 Hooks::run(
'LanguageLinks', [ $titleObj, &$langlinks, &$linkFlags ] );
375 if ( isset( $prop[
'categories'] ) ) {
378 if ( isset( $prop[
'categorieshtml'] ) ) {
379 $result_array[
'categorieshtml'] = $outputPage->getSkin()->getCategories();
382 if ( isset( $prop[
'links'] ) ) {
383 $result_array[
'links'] = $this->
formatLinks( $p_result->getLinks() );
385 if ( isset( $prop[
'templates'] ) ) {
386 $result_array[
'templates'] = $this->
formatLinks( $p_result->getTemplates() );
388 if ( isset( $prop[
'images'] ) ) {
389 $result_array[
'images'] = array_keys( $p_result->getImages() );
391 if ( isset( $prop[
'externallinks'] ) ) {
392 $result_array[
'externallinks'] = array_keys( $p_result->getExternalLinks() );
394 if ( isset( $prop[
'sections'] ) ) {
395 $result_array[
'sections'] = $p_result->getSections();
397 if ( isset( $prop[
'parsewarnings'] ) ) {
398 $result_array[
'parsewarnings'] = $p_result->getWarnings();
401 if ( isset( $prop[
'displaytitle'] ) ) {
402 $result_array[
'displaytitle'] = $p_result->getDisplayTitle() ?:
403 $titleObj->getPrefixedText();
406 if ( isset( $prop[
'headitems'] ) ) {
408 $result_array[
'headitems'] = $this->
formatHeadItems( $outputPage->getHeadItemsArray() );
410 $result_array[
'headitems'] = $this->
formatHeadItems( $p_result->getHeadItems() );
414 if ( isset( $prop[
'headhtml'] ) ) {
415 $result_array[
'headhtml'] = $outputPage->headElement(
$context->
getSkin() );
419 if ( isset( $prop[
'modules'] ) ) {
421 $result_array[
'modules'] = $outputPage->getModules();
422 $result_array[
'modulescripts'] = $outputPage->getModuleScripts();
423 $result_array[
'modulestyles'] = $outputPage->getModuleStyles();
425 $result_array[
'modules'] = array_values( array_unique( $p_result->getModules() ) );
426 $result_array[
'modulescripts'] = array_values( array_unique( $p_result->getModuleScripts() ) );
427 $result_array[
'modulestyles'] = array_values( array_unique( $p_result->getModuleStyles() ) );
431 if ( isset( $prop[
'jsconfigvars'] ) ) {
432 $jsconfigvars =
$skin ? $outputPage->getJsConfigVars() : $p_result->getJsConfigVars();
436 if ( isset( $prop[
'encodedjsconfigvars'] ) ) {
437 $jsconfigvars =
$skin ? $outputPage->getJsConfigVars() : $p_result->getJsConfigVars();
446 if ( isset( $prop[
'modules'] ) &&
447 !isset( $prop[
'jsconfigvars'] ) && !isset( $prop[
'encodedjsconfigvars'] ) ) {
448 $this->
addWarning(
'apiwarn-moduleswithoutvars' );
451 if ( isset( $prop[
'indicators'] ) ) {
453 $result_array[
'indicators'] = (
array)$outputPage->getIndicators();
455 $result_array[
'indicators'] = (
array)$p_result->getIndicators();
460 if ( isset( $prop[
'iwlinks'] ) ) {
461 $result_array[
'iwlinks'] = $this->
formatIWLinks( $p_result->getInterwikiLinks() );
464 if ( isset( $prop[
'wikitext'] ) ) {
465 $result_array[
'wikitext'] = $this->
content->serialize( $format );
467 if ( !is_null( $this->pstContent ) ) {
468 $result_array[
'psttext'] = $this->pstContent->serialize( $format );
472 if ( isset( $prop[
'properties'] ) ) {
473 $result_array[
'properties'] = (
array)$p_result->getProperties();
477 if ( isset( $prop[
'limitreportdata'] ) ) {
478 $result_array[
'limitreportdata'] =
481 if ( isset( $prop[
'limitreporthtml'] ) ) {
486 if ( isset( $prop[
'parsetree'] ) ||
$params[
'generatexml'] ) {
488 $this->
dieWithError(
'apierror-parsetree-notwikitext',
'notwikitext' );
493 if ( is_callable( [ $dom,
'saveXML' ] ) ) {
494 $xml = $dom->saveXML();
496 $xml = $dom->__toString();
498 $result_array[
'parsetree'] = $xml;
505 'categories' =>
'cl',
509 'externallinks' =>
'el',
514 'indicators' =>
'ind',
515 'modulescripts' =>
'm',
516 'modulestyles' =>
'm',
517 'properties' =>
'pp',
518 'limitreportdata' =>
'lr',
519 'parsewarnings' =>
'pw'
535 $popts->enableLimitReport( !
$params[
'disablepp'] && !
$params[
'disablelimitreport'] );
536 $popts->setIsPreview(
$params[
'preview'] ||
$params[
'sectionpreview'] );
537 $popts->setIsSectionPreview(
$params[
'sectionpreview'] );
538 $popts->setEditSection( !
$params[
'disableeditsection'] );
539 if (
$params[
'disabletidy'] ) {
540 $popts->setTidy(
false );
542 $popts->setWrapOutputClass(
543 $params[
'wrapoutputclass'] ===
'' ?
false :
$params[
'wrapoutputclass']
547 $suppressCache =
false;
549 [ $popts, $pageObj->
getTitle(),
$params, $this, &$reset, &$suppressCache ] );
552 $suppressCache = $suppressCache || !$popts->isSafeToCache();
554 return [ $popts, $reset, $suppressCache ];
567 WikiPage $page, $popts, $suppressCache, $pageId,
$rev, $getContent
569 $revId =
$rev ?
$rev->getId() :
null;
572 if ( $getContent || $this->section !==
false || $isDeleted ) {
576 $this->
dieWithError( [
'apierror-missingcontent-revid', $revId ] );
581 $this->
dieWithError( [
'apierror-missingcontent-pageid', $pageId ] );
584 $this->contentIsDeleted = $isDeleted;
585 $this->contentIsSuppressed =
$rev &&
589 if ( $this->section !==
false ) {
592 $pageId ===
null ? $page->
getTitle()->getPrefixedText() : $this->
msg(
'pageid', $pageId )
594 return $this->
content->getParserOutput( $page->
getTitle(), $revId, $popts );
599 $pout = $this->
content->getParserOutput( $page->
getTitle(), $revId, $popts );
622 $this->
dieWithError( [
'apierror-nosuchsection-what', $this->section, $what ],
'nosuchsection' );
625 $this->
dieWithError( [
'apierror-sectionsnotsupported-what', $what ],
'nosuchsection' );
641 $summary = !is_null(
$params[
'summary'] ) ?
$params[
'summary'] :
'';
642 $sectionTitle = !is_null(
$params[
'sectiontitle'] ) ?
$params[
'sectiontitle'] :
'';
644 if ( $this->section ===
'new' && ( $sectionTitle ===
'' || $summary ===
'' ) ) {
645 if ( $sectionTitle !==
'' ) {
646 $summary =
$params[
'sectiontitle'];
648 if ( $summary !==
'' ) {
649 $summary =
wfMessage(
'newsectionsummary' )
650 ->rawParams(
$wgParser->stripSectionName( $summary ) )
651 ->inContentLanguage()->text();
661 $bits = explode(
':',
$link, 2 );
664 $entry[
'lang'] = $bits[0];
693 $db = $this->
getDB();
694 $res = $db->select( [
'page',
'page_props' ],
695 [
'page_title',
'pp_propname' ],
696 $lb->constructSet(
'page', $db ),
700 'LEFT JOIN', [
'pp_propname' =>
'hiddencat',
'pp_page = page_id' ]
704 foreach (
$res as $row ) {
705 $hiddencats[$row->page_title] = isset( $row->pp_propname );
710 foreach ( $links
as $link => $sortkey ) {
712 $entry[
'sortkey'] = $sortkey;
715 if ( !isset( $hiddencats[
$link] ) ) {
716 $entry[
'missing'] =
true;
721 $linkCache->addBadLinkObj(
$title );
722 if (
$title->isKnown() ) {
723 $entry[
'known'] =
true;
725 } elseif ( $hiddencats[
$link] ) {
726 $entry[
'hidden'] =
true;
736 foreach ( $links
as $ns => $nslinks ) {
737 foreach ( $nslinks
as $title => $id ) {
741 $entry[
'exists'] = $id != 0;
754 $entry[
'prefix'] = $prefix;
773 $entry[
'tag'] = $tag;
786 $entry[
'name'] =
$name;
787 if ( !is_array(
$value ) ) {
791 $entry = array_merge( $entry,
$value );
799 foreach ( $mapping
as $key =>
$name ) {
800 if ( isset( $array[$key] ) ) {
820 'redirects' =>
false,
826 'images|externallinks|sections|revid|displaytitle|iwlinks|' .
827 'properties|parsewarnings',
844 'encodedjsconfigvars',
859 'headitems' =>
'apiwarn-deprecation-parse-headitems',
862 'wrapoutputclass' =>
'mw-parser-output',
865 'effectivelanglinks' => [
877 'disablelimitreport' =>
false,
878 'disableeditsection' =>
false,
879 'disabletidy' =>
false,
888 'sectionpreview' =>
false,
889 'disabletoc' =>
false,
904 'action=parse&page=Project:Sandbox'
905 =>
'apihelp-parse-example-page',
906 'action=parse&text={{Project:Sandbox}}&contentmodel=wikitext'
907 =>
'apihelp-parse-example-text',
908 'action=parse&text={{PAGENAME}}&title=Test'
909 =>
'apihelp-parse-example-texttitle',
910 'action=parse&summary=Some+[[link]]&prop='
911 =>
'apihelp-parse-example-summary',
916 return 'https://www.mediawiki.org/wiki/Special:MyLanguage/API:Parsing_wikitext#parse';
This is the main API class, used for both external and internal processing.
WebRequest clone which takes values from a provided array.
static newFromText( $text, $defaultNamespace=NS_MAIN)
Create a new Title from text, such as what one would find in a link.
getContext()
Get the base IContextSource object.
getParsedContent(WikiPage $page, $popts, $suppressCache, $pageId, $rev, $getContent)
static getAllContentFormats()
addWarning( $msg, $code=null, $data=null)
Add a warning for this module.
static newFromId( $id, $flags=0)
Load a page revision from a given revision ID number.
per default it will return the text for text based content
getSkin()
Get the Skin object.
Class representing a list of titles The execute() method checks them all for existence and adds them ...
dieWithError( $msg, $code=null, $data=null, $httpCode=null)
Abort execution with an error.
const PARAM_HELP_MSG
(string|array|Message) Specify an alternative i18n documentation message for this parameter.
msg( $key)
Get a Message object with context set Parameters are the same as wfMessage()
The index of the header message $result[1]=The index of the body text message $result[2 through n]=Parameters passed to body text message. Please note the header message cannot receive/use parameters. 'ImportHandleLogItemXMLTag':When parsing a XML tag in a log item. Return false to stop further processing of the tag $reader:XMLReader object $logInfo:Array of information 'ImportHandlePageXMLTag':When parsing a XML tag in a page. Return false to stop further processing of the tag $reader:XMLReader object & $pageInfo:Array of information 'ImportHandleRevisionXMLTag':When parsing a XML tag in a page revision. Return false to stop further processing of the tag $reader:XMLReader object $pageInfo:Array of page information $revisionInfo:Array of revision information 'ImportHandleToplevelXMLTag':When parsing a top level XML tag. Return false to stop further processing of the tag $reader:XMLReader object 'ImportHandleUploadXMLTag':When parsing a XML tag in a file upload. Return false to stop further processing of the tag $reader:XMLReader object $revisionInfo:Array of information 'ImportLogInterwikiLink':Hook to change the interwiki link used in log entries and edit summaries for transwiki imports. & $fullInterwikiPrefix:Interwiki prefix, may contain colons. & $pageTitle:String that contains page title. 'ImportSources':Called when reading from the $wgImportSources configuration variable. Can be used to lazy-load the import sources list. & $importSources:The value of $wgImportSources. Modify as necessary. See the comment in DefaultSettings.php for the detail of how to structure this array. 'InfoAction':When building information to display on the action=info page. $context:IContextSource object & $pageInfo:Array of information 'InitializeArticleMaybeRedirect':MediaWiki check to see if title is a redirect. & $title:Title object for the current page & $request:WebRequest & $ignoreRedirect:boolean to skip redirect check & $target:Title/string of redirect target & $article:Article object 'InternalParseBeforeLinks':during Parser 's internalParse method before links but after nowiki/noinclude/includeonly/onlyinclude and other processings. & $parser:Parser object & $text:string containing partially parsed text & $stripState:Parser 's internal StripState object 'InternalParseBeforeSanitize':during Parser 's internalParse method just before the parser removes unwanted/dangerous HTML tags and after nowiki/noinclude/includeonly/onlyinclude and other processings. Ideal for syntax-extensions after template/parser function execution which respect nowiki and HTML-comments. & $parser:Parser object & $text:string containing partially parsed text & $stripState:Parser 's internal StripState object 'InterwikiLoadPrefix':When resolving if a given prefix is an interwiki or not. Return true without providing an interwiki to continue interwiki search. $prefix:interwiki prefix we are looking for. & $iwData:output array describing the interwiki with keys iw_url, iw_local, iw_trans and optionally iw_api and iw_wikiid. 'InvalidateEmailComplete':Called after a user 's email has been invalidated successfully. $user:user(object) whose email is being invalidated 'IRCLineURL':When constructing the URL to use in an IRC notification. Callee may modify $url and $query, URL will be constructed as $url . $query & $url:URL to index.php & $query:Query string $rc:RecentChange object that triggered url generation 'IsFileCacheable':Override the result of Article::isFileCacheable()(if true) & $article:article(object) being checked 'IsTrustedProxy':Override the result of IP::isTrustedProxy() & $ip:IP being check & $result:Change this value to override the result of IP::isTrustedProxy() 'IsUploadAllowedFromUrl':Override the result of UploadFromUrl::isAllowedUrl() $url:URL used to upload from & $allowed:Boolean indicating if uploading is allowed for given URL 'isValidEmailAddr':Override the result of Sanitizer::validateEmail(), for instance to return false if the domain name doesn 't match your organization. $addr:The e-mail address entered by the user & $result:Set this and return false to override the internal checks 'isValidPassword':Override the result of User::isValidPassword() $password:The password entered by the user & $result:Set this and return false to override the internal checks $user:User the password is being validated for 'Language::getMessagesFileName':$code:The language code or the language we 're looking for a messages file for & $file:The messages file path, you can override this to change the location. 'LanguageGetMagic':DEPRECATED! Use $magicWords in a file listed in $wgExtensionMessagesFiles instead. Use this to define synonyms of magic words depending of the language & $magicExtensions:associative array of magic words synonyms $lang:language code(string) 'LanguageGetNamespaces':Provide custom ordering for namespaces or remove namespaces. Do not use this hook to add namespaces. Use CanonicalNamespaces for that. & $namespaces:Array of namespaces indexed by their numbers 'LanguageGetSpecialPageAliases':DEPRECATED! Use $specialPageAliases in a file listed in $wgExtensionMessagesFiles instead. Use to define aliases of special pages names depending of the language & $specialPageAliases:associative array of magic words synonyms $lang:language code(string) 'LanguageGetTranslatedLanguageNames':Provide translated language names. & $names:array of language code=> language name $code:language of the preferred translations 'LanguageLinks':Manipulate a page 's language links. This is called in various places to allow extensions to define the effective language links for a page. $title:The page 's Title. & $links: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! 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
const META_BC_SUBELEMENTS
Key for the 'BC subelements' metadata item.
getTitleOrPageId( $params, $load=false)
Get a WikiPage object from a title or pageid param, if possible.
const PARAM_TYPE
(string|string[]) Either an array of allowed value strings, or a string type as described below.
getResult()
Get the result object.
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 use
this hook is for auditing only $req
Class representing a MediaWiki article and history.
makeParserOptions( $context)
Get parser options suitable for rendering the primary article wikitext.
getDB()
Gets a default replica DB connection object.
Allows to change the fields on the form that will be generated $name
if(! $wgRequest->checkUrlExtension()) if(isset( $_SERVER['PATH_INFO']) && $_SERVER['PATH_INFO'] !='') if(! $wgEnableAPI) $wgTitle
const CONTENT_MODEL_WIKITEXT
getUser()
Get the User object.
const PARAM_DEPRECATED_VALUES
(array) When PARAM_TYPE is an array, this indicates which of the values are deprecated.
setArray( $array)
Set the link list to a given 2-d array First key is the namespace, second is the DB key,...
This class contains a list of pages that the client has requested.
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
This abstract class implements many basic API functions, and is the base of all API classes.
getLanguage()
Get the Language object.
static getPreviewLimitReport( $output)
Get the Limit report for page previews.
static setContentValue(array &$arr, $name, $value, $flags=0)
Add an output value to the array by name and mark as META_CONTENT.
const PARAM_DEPRECATED
(boolean) Is the parameter deprecated (will show a warning)?
An IContextSource implementation which will inherit context from another source but allow individual ...
static setArrayType(array &$arr, $type, $kvpKeyName=null)
Set the array data type.
getHelpUrls()
Return links to more detailed help pages about the module.
namespace and then decline to actually register it file or subcat img or subcat $title
static factory(Title $title)
Create a WikiPage object of the appropriate class for the given title.
static addMetadataToResultVars( $vars, $forceHash=true)
Add the correct metadata to an array of vars we want to export through the API.
linkcache txt The LinkCache class maintains a list of article titles and the information about whether or not the article exists in the database This is used to mark up links when displaying a page If the same link appears more than once on any page then it only has to be looked up once In most cases link lookups are done in batches with the LinkBatch class or the equivalent in so the link cache is mostly useful for short snippets of parsed and for links in the navigation areas of the skin The link cache was formerly used to track links used in a document for the purposes of updating the link tables This application is now deprecated To create a you can use the following $titles
static normalizeKey( $key)
Normalize a skin preference value to a form that can be loaded.
static getContentModels()
getAllowedParams()
Returns an array of allowed parameters (parameter name) => (default value) or (parameter name) => (ar...
getParserOutput(ParserOptions $parserOptions, $oldid=null, $forceParse=false)
Get a ParserOutput for the given ParserOptions and revision ID.
const META_SUBELEMENTS
Key for the 'subelements' metadata item.
formatLimitReportData( $limitReportData)
Using a hook running we can avoid having all this option specific stuff in our mainline code Using the function array $article
getTitle()
Get the title object of the article.
Exception representing a failure to serialize or unserialize a content object.
getContent( $audience=Revision::FOR_PUBLIC, User $user=null)
Get the content of the current revision.
dieWithException( $exception, array $options=[])
Abort execution with an error derived from an exception.
static makeTitle( $ns, $title, $fragment='', $interwiki='')
Create a new Title from a namespace index and a DB key.
when a variable name is used in a it is silently declared as a new masking the global
getLatest()
Get the page_latest field.
static create( $msg, $code=null, array $data=null)
Create an IApiMessage for the message.
formatSummary( $title, $params)
This mimicks the behavior of EditPage in formatting a summary.
This class should be covered by a general architecture document which does not exist as of January 20...
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
static makeContent( $text, Title $title=null, $modelId=null, $format=null)
Convenience function for creating a Content object from a given textual representation.
formatCategoryLinks( $links)
extractRequestParams( $parseLimit=true)
Using getAllowedParams(), this function makes an array of the values provided by the user,...
static setIndexedTagName(array &$arr, $tag)
Set the tag name for numeric-keyed values in XML format.
setIndexedTagNames(&$array, $mapping)
checkTitleUserPermissions(Title $title, $actions, $user=null)
Helper function for permission-denied errors.
wfEscapeWikiText( $text)
Escapes the given text so that it may be output using addWikiText() without any linking,...
requireMaxOneParameter( $params, $required)
Die if more than one of a certain set of parameters is set and not false.
static fetchLanguageName( $code, $inLanguage=null, $include='all')
static formatComment( $comment, $title=null, $local=false, $wikiId=null)
This function is called by all recent changes variants, by the page history, and by the user contribu...
Base interface for content objects.
static singleton()
Get an instance of this class.
const PARAM_DFLT
(null|boolean|integer|string) Default value of the parameter.
presenting them properly to the user as errors is done by the caller return true use this to change the list i e etc $rev
getExamplesMessages()
Returns usage examples for this module.
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
getModuleName()
Get the name of the module being executed by this instance.
const PARAM_ISMULTI
(boolean) Accept multiple pipe-separated values for this parameter (e.g.
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 an< a > element with HTML attributes $attribs and contents $html will be returned If you return $ret will be returned $skin
getSectionContent(Content $content, $what)
Extract the requested section from the given Content.
usually copyright or history_copyright This message must be in HTML not wikitext & $link
getMain()
Get the main module.
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 set this to the key of the message First element is the message additional optional elements are parameters for the key that are processed with wfMessage() -> params() ->parseAsBlock() - offset Set to overwrite offset parameter in $wgRequest set to '' to unset offset - wrap String Wrap the message in html(usually something like "<
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 MediaWikiServices
static getAllowedSkins()
Fetch the list of user-selectable skins in regards to $wgSkipSkins.
formatHeadItems( $headItems)
static setIndexedTagNameRecursive(array &$arr, $tag)
Set indexed tag name on $arr and all subarrays.
const PARAM_HELP_MSG_PER_VALUE
((string|array|Message)[]) When PARAM_TYPE is an array, this is an array mapping those values to $msg...
static run( $event, array $args=[], $deprecatedVersion=null)
Call hook functions defined in Hooks::register and $wgHooks.
makeParserOptions(WikiPage $pageObj, array $params)
Constructs a ParserOptions object.
wfExpandUrl( $url, $defaultProto=PROTO_CURRENT)
Expand a potentially local URL to a fully-qualified URL.
the array() calling protocol came about after MediaWiki 1.4rc1.
bool $contentIsSuppressed
execute()
Evaluates the parameters, performs the requested query, and sets up the result.
static newFromTitle( $title, IContextSource $context)
Create an Article object of the appropriate class for the given page.