MediaWiki
REL1_19
|
Class for viewing MediaWiki article and history. More...
Public Member Functions | |
__call ($fname, $args) | |
Use PHP's magic __call handler to transform instance calls to WikiPage functions for backwards compatibility. | |
__construct (Title $title, $oldId=null) | |
Constructor and clear the article. | |
__get ($fname) | |
Use PHP's magic __get handler to handle accessing of raw WikiPage fields for backwards compatibility. | |
__set ($fname, $fvalue) | |
Use PHP's magic __set handler to handle setting of raw WikiPage fields for backwards compatibility. | |
adjustDisplayTitle (ParserOutput $pOutput) | |
Adjust title for pages with displaytitle, -{T|}- or language conversion. | |
clear () | |
Clear the object. | |
commitRollback ($fromP, $summary, $bot, &$resultDetails, User $guser=null) | |
confirmDelete ($reason) | |
Output deletion confirmation dialog. | |
delete () | |
UI entry point for page deletion. | |
doDelete ($reason, $suppress=false) | |
Perform a deletion and output success or failure messages. | |
doDeleteArticle ($reason, $suppress=false, $id=0, $commit=true, &$error= '') | |
doRedirect ($noRedir=false, $sectionAnchor= '', $extraQuery= '') | |
Output a redirect back to the article. | |
doRollback ($fromP, $summary, $token, $bot, &$resultDetails, User $user=null) | |
doUnwatch () | |
Stop watching a page. | |
doUpdateRestrictions (array $limit, array $expiry, &$cascade, $reason, User $user) | |
doWatch () | |
Add this page to $wgUser's watchlist. | |
fetchContent () | |
Get text of an article from database Does *NOT* follow redirects. | |
forUpdate () | |
No-op. | |
generateReason (&$hasHistory) | |
getContent () | |
Note that getContent/loadContent do not follow redirects anymore. | |
getContext () | |
Gets the context this Article is executed in. | |
getOldID () | |
getOldIDFromRequest () | |
Sets $this->mRedirectUrl to a correct URL if the query parameters are incorrect. | |
getPage () | |
Get the WikiPage object of this instance. | |
getParserOptions () | |
Get parser options suitable for rendering the primary article wikitext. | |
getParserOutput ($oldid=null, User $user=null) | |
#@- | |
getRevIdFetched () | |
Use this to fetch the rev ID used on page views. | |
getRevisionFetched () | |
Get the fetched Revision object depending on request parameters or null on failure. | |
getRobotPolicy ($action, $pOutput) | |
Get the robot policy to be used for the current view. | |
getTitle () | |
Get the title object of the article. | |
info () | |
Info about this page. | |
isCurrent () | |
Returns true if the currently-referenced revision is the current edit to this page (and it exists). | |
isFileCacheable () | |
Check if the page can be cached. | |
loadContent () | |
Load the revision (including text) into this object. | |
markpatrolled () | |
Mark this particular edit/page as patrolled. | |
protect () | |
action=protect handler | |
purge () | |
Handle action=purge. | |
render () | |
Handle action=render. | |
revert () | |
Handle action=revert. | |
rollback () | |
Handle action=rollback. | |
setContext ($context) | |
Sets the context this Article is executed in. | |
setOldSubtitle ($oldid=0) | |
Generate the navigation links when browsing through an article revisions It shows the information as: Revision as of <date>; view current revision <- Previous version | Next Version -> | |
setRedirectedFrom (Title $from) | |
Tell the page view functions that this view was redirected from another page on the wiki. | |
showDeletedRevisionHeader () | |
If the revision requested for view is deleted, check permissions. | |
showDiffPage () | |
Show a diff page according to current request variables. | |
showMissingArticle () | |
Show the error text for a missing article. | |
showNamespaceHeader () | |
Show a header specific to the namespace currently being viewed, like [[MediaWiki:Talkpagetext]]. | |
showPatrolFooter () | |
If patrol is possible, output a patrol UI box. | |
showRedirectedFromHeader () | |
If this request is a redirect view, send "redirected from" subtitle to $wgOut. | |
showViewFooter () | |
Show the footer section of an ordinary page view. | |
unprotect () | |
action=unprotect handler (alias) | |
unwatch () | |
User interface handler for the "unwatch" action. | |
updateRestrictions ($limit=array(), $reason= '', &$cascade=0, $expiry=array()) | |
view () | |
This is the default action of the index.php entry point: just view the page of the given title. | |
viewRedirect ($target, $appendSubtitle=true, $forceKnown=false) | |
View redirect. | |
watch () | |
User-interface handler for the "watch" action. | |
Static Public Member Functions | |
static | formatRobotPolicy ($policy) |
Converts a String robot policy into an associative array, to allow merging of several policies using array_merge(). | |
static | getAutosummary ($oldtext, $newtext, $flags) |
static | newFromID ($id) |
Constructor from a page id. | |
static | newFromTitle ($title, IContextSource $context) |
Create an Article object of the appropriate class for the given page. | |
static | newFromWikiPage (WikiPage $page, IContextSource $context) |
Create an Article object of the appropriate class for the given page. | |
static | onArticleCreate ($title) |
static | onArticleDelete ($title) |
static | onArticleEdit ($title) |
static | selectFields () |
Protected Member Functions | |
newPage (Title $title) | |
showCssOrJsPage () | |
Show a page view for a page formatted as CSS or JavaScript. | |
tryFileCache () | |
checkLastModified returns true if it has taken care of all output to the client that is necessary for this request. | |
$mContext | |
$mPage | |
$mParserOptions | |
$mContent | |
$mContentLoaded = false | |
$mOldId | |
$mRedirectedFrom = null | |
$mRedirectUrl = false | |
$mRevIdFetched = 0 | |
$mRevision = null | |
$mParserOutput |
Class for viewing MediaWiki article and history.
This maintains WikiPage functions for backwards compatibility.
: move and rewrite code to an Action class
See design.txt for an overview. Note: edit user interface and cache support functions have been moved to separate EditPage and HTMLFileCache classes.
Definition at line 20 of file Article.php.
Article::__construct | ( | Title $ | title, |
$ | oldId = null |
||
) |
Constructor and clear the article.
$title | Title Reference to a Title object. |
$oldId | Integer revision ID, null to fetch from request, zero for current |
Definition at line 72 of file Article.php.
References newPage().
Article::__call | ( | $ | fname, |
$ | args | ||
) |
Use PHP's magic __call handler to transform instance calls to WikiPage functions for backwards compatibility.
$fname | String Name of called method |
$args | Array Arguments to the method |
Definition at line 1780 of file Article.php.
References $fname.
Article::__get | ( | $ | fname | ) |
Use PHP's magic __get handler to handle accessing of raw WikiPage fields for backwards compatibility.
$fname | String Field name |
Definition at line 1746 of file Article.php.
References $fname.
Article::__set | ( | $ | fname, |
$ | fvalue | ||
) |
Use PHP's magic __set handler to handle setting of raw WikiPage fields for backwards compatibility.
$fname | String Field name |
$fvalue | mixed New value |
Definition at line 1761 of file Article.php.
References $fname.
Article::adjustDisplayTitle | ( | ParserOutput $ | pOutput | ) |
Adjust title for pages with displaytitle, -{T|}- or language conversion.
$pOutput | ParserOutput |
Definition at line 656 of file Article.php.
References $wgOut, and ParserOutput\getTitleText().
Referenced by view().
Article::clear | ( | ) |
Clear the object.
Definition at line 173 of file Article.php.
Article::commitRollback | ( | $ | fromP, |
$ | summary, | ||
$ | bot, | ||
&$ | resultDetails, | ||
User $ | guser = null |
||
) |
$fromP | |
$summary | |
$bot | |
$resultDetails | |
$guser | User |
Definition at line 1848 of file Article.php.
References $wgUser.
Article::confirmDelete | ( | $ | reason | ) |
Output deletion confirmation dialog.
$reason | String: prefilled reason |
Definition at line 1374 of file Article.php.
References $title, $user, $wgOut, Xml\checkLabel(), Xml\closeElement(), Xml\element(), getContext(), getTitle(), Html\hidden(), Html\input(), Xml\label(), Linker\link(), Xml\listDropDown(), LogPage\logName(), Title\makeTitle(), Xml\openElement(), LogEventsList\showLogExtract(), Xml\submitButton(), Xml\tags(), wfDebug(), wfMessage(), wfMsg(), wfMsgExt(), wfMsgForContent(), wfMsgHtml(), and wfRunHooks().
Referenced by delete().
Article::delete | ( | ) |
UI entry point for page deletion.
Reimplemented in ImagePage.
Definition at line 1273 of file Article.php.
References $title, $user, $wgDeleteRevisionsLimit, $wgLang, $wgOut, confirmDelete(), doDelete(), doUnwatch(), doWatch(), Xml\element(), generateReason(), getContext(), getTitle(), Linker\link(), LogPage\logName(), LogEventsList\showLogExtract(), wfEscapeWikiText(), wfGetDB(), wfMessage(), wfMsgExt(), wfMsgForContent(), wfMsgHtml(), and wfReadOnly().
Article::doDelete | ( | $ | reason, |
$ | suppress = false |
||
) |
Perform a deletion and output success or failure messages.
$reason | |
$suppress | bool |
Definition at line 1480 of file Article.php.
References $wgOut, Xml\element(), getTitle(), LogPage\logName(), LogEventsList\showLogExtract(), wfEscapeWikiText(), wfMessage(), and wfMsgNoTrans().
Referenced by delete().
Article::doDeleteArticle | ( | $ | reason, |
$ | suppress = false , |
||
$ | id = 0 , |
||
$ | commit = true , |
||
&$ | error = '' |
||
) |
$reason | string |
$suppress | bool |
$id | int |
$commit | bool |
$error | string |
Definition at line 1821 of file Article.php.
Article::doRedirect | ( | $ | noRedir = false , |
$ | sectionAnchor = '' , |
||
$ | extraQuery = '' |
||
) |
Output a redirect back to the article.
This is typically used after an edit.
$noRedir | Boolean: add redirect=no |
$sectionAnchor | String: section to redirect to, including "#" |
$extraQuery | String: extra query params |
Definition at line 1725 of file Article.php.
References $wgOut, getTitle(), and wfDeprecated().
Article::doRollback | ( | $ | fromP, |
$ | summary, | ||
$ | token, | ||
$ | bot, | ||
&$ | resultDetails, | ||
User $ | user = null |
||
) |
$fromP | |
$summary | |
$token | |
$bot | |
$resultDetails | |
$user | User |
Definition at line 1834 of file Article.php.
Stop watching a page.
Definition at line 1710 of file Article.php.
References $wgUser, getTitle(), and wfDeprecated().
Referenced by delete().
Article::doUpdateRestrictions | ( | array $ | limit, |
array $ | expiry, | ||
&$ | cascade, | ||
$ | reason, | ||
User $ | user | ||
) |
$limit | array |
$expiry | array |
$cascade | bool |
$reason | string |
$user | User |
Definition at line 1798 of file Article.php.
Article::doWatch | ( | ) |
Add this page to $wgUser's watchlist.
This is safe to be called multiple times
Definition at line 1689 of file Article.php.
References $wgUser, getTitle(), and wfDeprecated().
Referenced by delete().
Get text of an article from database Does *NOT* follow redirects.
Definition at line 296 of file Article.php.
References $t, Revision\FOR_THIS_USER, getOldID(), getTitle(), Revision\newFromId(), wfDebug(), wfMsgExt(), wfMsgNoTrans(), wfProfileIn(), wfProfileOut(), and wfRunHooks().
Referenced by getContent(), getRevisionFetched(), loadContent(), and view().
static Article::formatRobotPolicy | ( | $ | policy | ) | [static] |
Converts a String robot policy into an associative array, to allow merging of several policies using array_merge().
$policy | Mixed, returns empty array on null/false/'', transparent to already-converted arrays, converts String. |
Definition at line 799 of file Article.php.
Referenced by getRobotPolicy(), and OutputPage\setRobotPolicy().
No-op.
Definition at line 354 of file Article.php.
References wfDeprecated().
Article::generateReason | ( | &$ | hasHistory | ) |
$hasHistory | bool |
Definition at line 1858 of file Article.php.
Referenced by delete().
static Article::getAutosummary | ( | $ | oldtext, |
$ | newtext, | ||
$ | flags | ||
) | [static] |
$oldtext | |
$newtext | |
$flags |
Definition at line 1898 of file Article.php.
Referenced by ArticleTest\testStaticFunctions().
Note that getContent/loadContent do not follow redirects anymore.
If you need to fetch redirectable content easily, try the shortcut in WikiPage::getRedirectTarget()
This function has side effects! Do not use this function if you only want the real revision text if any.
Reimplemented in ImagePage.
Definition at line 193 of file Article.php.
References $wgUser, fetchContent(), getTitle(), wfMsgExt(), wfProfileIn(), and wfProfileOut().
Referenced by view().
Gets the context this Article is executed in.
Definition at line 1618 of file Article.php.
References RequestContext\getMain(), and wfDebug().
Referenced by CategoryPage\closeShowCategory(), confirmDelete(), delete(), isFileCacheable(), showCssOrJsPage(), showDiffPage(), tryFileCache(), CategoryPage\view(), and ImagePage\view().
Definition at line 224 of file Article.php.
References getOldIDFromRequest().
Referenced by fetchContent(), getRobotPolicy(), isCurrent(), showDeletedRevisionHeader(), showDiffPage(), showMissingArticle(), and view().
Sets $this->mRedirectUrl to a correct URL if the query parameters are incorrect.
Definition at line 237 of file Article.php.
References getTitle(), and Revision\newFromId().
Referenced by getOldID().
Article::getPage | ( | ) |
Get the WikiPage object of this instance.
Definition at line 166 of file Article.php.
Get parser options suitable for rendering the primary article wikitext.
Definition at line 1593 of file Article.php.
References $wgUser.
Referenced by view().
Article::getParserOutput | ( | $ | oldid = null , |
User $ | user = null |
||
) |
#@-
Lightweight method to get the parser output for a page, checking the parser cache and so on. Doesn't consider most of the stuff that WikiPage::view is forced to consider, so it's not appropriate to use there.
Definition at line 1580 of file Article.php.
Use this to fetch the rev ID used on page views.
Definition at line 390 of file Article.php.
Referenced by view().
Get the fetched Revision object depending on request parameters or null on failure.
Definition at line 379 of file Article.php.
References fetchContent().
Article::getRobotPolicy | ( | $ | action, |
$ | pOutput | ||
) |
Get the robot policy to be used for the current view.
$action | String the action= GET parameter |
$pOutput | ParserOutput |
Definition at line 724 of file Article.php.
References $wgArticleRobotPolicies, $wgDefaultRobotPolicy, $wgNamespaceRobotPolicies, $wgOut, formatRobotPolicy(), getOldID(), getTitle(), and Block\newFromTarget().
Referenced by view().
Get the title object of the article.
Definition at line 156 of file Article.php.
Referenced by EditPage\__construct(), CategoryPage\closeShowCategory(), confirmDelete(), delete(), doDelete(), doRedirect(), doUnwatch(), doWatch(), fetchContent(), getContent(), getOldIDFromRequest(), getRobotPolicy(), ImagePage\imageDupes(), ImagePage\imageLinks(), isFileCacheable(), ImagePage\loadFile(), ImagePage\openShowImage(), setOldSubtitle(), showCssOrJsPage(), showDeletedRevisionHeader(), showMissingArticle(), showNamespaceHeader(), showPatrolFooter(), showRedirectedFromHeader(), showViewFooter(), tryFileCache(), ImagePage\uploadLinksBox(), CategoryPage\view(), ImagePage\view(), view(), and viewRedirect().
Article::info | ( | ) |
Info about this page.
Definition at line 1631 of file Article.php.
References Action\factory(), and wfDeprecated().
Returns true if the currently-referenced revision is the current edit to this page (and it exists).
Definition at line 363 of file Article.php.
References getOldID().
Referenced by view().
Check if the page can be cached.
Definition at line 1552 of file Article.php.
References getContext(), getTitle(), HTMLFileCache\useFileCache(), and wfRunHooks().
Referenced by tryFileCache().
Load the revision (including text) into this object.
Definition at line 285 of file Article.php.
References fetchContent(), and wfDeprecated().
Mark this particular edit/page as patrolled.
Definition at line 1640 of file Article.php.
References Action\factory(), and wfDeprecated().
static Article::newFromID | ( | $ | id | ) | [static] |
Constructor from a page id.
$id | Int article ID to load |
Reimplemented in ImagePage, and CategoryPage.
Definition at line 90 of file Article.php.
References $t.
static Article::newFromTitle | ( | $ | title, |
IContextSource $ | context | ||
) | [static] |
Create an Article object of the appropriate class for the given page.
$title | Title |
$context | IContextSource |
Definition at line 104 of file Article.php.
References $page, $title, Title\makeTitle(), and wfRunHooks().
Referenced by MediaWiki\articleFromTitle(), ApiEditPage\execute(), RebuildFileCache\execute(), MediaWiki\initializeArticle(), newFromWikiPage(), and tryFileCache().
static Article::newFromWikiPage | ( | WikiPage $ | page, |
IContextSource $ | context | ||
) | [static] |
Create an Article object of the appropriate class for the given page.
$page | WikiPage |
$context | IContextSource |
Definition at line 136 of file Article.php.
References $page, WikiPage\getTitle(), and newFromTitle().
Article::newPage | ( | Title $ | title | ) | [protected] |
$title | Title |
Reimplemented in ImagePage, and CategoryPage.
Definition at line 81 of file Article.php.
Referenced by __construct().
static Article::onArticleCreate | ( | $ | title | ) | [static] |
static Article::onArticleDelete | ( | $ | title | ) | [static] |
static Article::onArticleEdit | ( | $ | title | ) | [static] |
Article::protect | ( | ) |
action=protect handler
Definition at line 1258 of file Article.php.
Referenced by unprotect().
Article::purge | ( | ) |
Handle action=purge.
Definition at line 1649 of file Article.php.
References Action\factory().
Article::render | ( | ) |
Handle action=render.
Reimplemented in ImagePage.
Definition at line 1248 of file Article.php.
References $wgOut, and view().
Article::revert | ( | ) |
Handle action=revert.
Definition at line 1657 of file Article.php.
References Action\factory(), and wfDeprecated().
Handle action=rollback.
Definition at line 1666 of file Article.php.
References Action\factory(), and wfDeprecated().
static Article::selectFields | ( | ) | [static] |
Definition at line 1867 of file Article.php.
Referenced by ArticleTest\testStaticFunctions().
Article::setContext | ( | $ | context | ) |
Sets the context this Article is executed in.
$context | IContextSource |
Definition at line 1608 of file Article.php.
Article::setOldSubtitle | ( | $ | oldid = 0 | ) |
Generate the navigation links when browsing through an article revisions It shows the information as: Revision as of <date>; view current revision <- Previous version | Next Version ->
$oldid | String: revision ID of this article revision |
Definition at line 1077 of file Article.php.
References $wgLang, $wgOut, $wgUser, Linker\getRevDeleteLink(), getTitle(), Linker\link(), Revision\newFromId(), Linker\revUserTools(), wfMessage(), wfMsgExt(), wfMsgHtml(), and wfRunHooks().
Referenced by view().
Article::setRedirectedFrom | ( | Title $ | from | ) |
Tell the page view functions that this view was redirected from another page on the wiki.
$from | Title object. |
Definition at line 147 of file Article.php.
Article::showCssOrJsPage | ( | ) | [protected] |
Show a page view for a page formatted as CSS or JavaScript.
To be called by Article::view() only.
This is hooked by SyntaxHighlight_GeSHi to do syntax highlighting of these page views.
Definition at line 697 of file Article.php.
References $dir, $wgOut, getContext(), getTitle(), and wfRunHooks().
Referenced by view().
If the revision requested for view is deleted, check permissions.
Send either an error message or a warning header to $wgOut.
Definition at line 1034 of file Article.php.
References $wgOut, Revision\DELETED_RESTRICTED, Revision\DELETED_TEXT, getOldID(), and getTitle().
Referenced by view().
Show a diff page according to current request variables.
For use within Article::view() only, other callers should use the DifferenceEngine class.
Definition at line 669 of file Article.php.
References $wgUser, getContext(), and getOldID().
Referenced by view().
Show the error text for a missing article.
For articles in the MediaWiki namespace, show the default message text. To be called from Article::view().
Definition at line 950 of file Article.php.
References $user, $wgOut, $wgSend404Code, $wgUser, getOldID(), getTitle(), User\isIP(), User\newFromName(), LogEventsList\showLogExtract(), wfEscapeWikiText(), wfMsgNoTrans(), and wfRunHooks().
Referenced by view().
Show a header specific to the namespace currently being viewed, like [[MediaWiki:Talkpagetext]].
For Article::view().
Definition at line 880 of file Article.php.
References $wgOut, getTitle(), and wfMessage().
Referenced by view().
If patrol is possible, output a patrol UI box.
This is called from the footer section of ordinary page views. If patrol is not possible or not desired, does nothing.
Definition at line 914 of file Article.php.
References $wgOut, $wgUser, getTitle(), Linker\link(), and wfMsgHtml().
Referenced by showViewFooter().
If this request is a redirect view, send "redirected from" subtitle to $wgOut.
Returns true if the header was needed, false if this is not a redirect view. Handles both local and remote redirects.
Definition at line 828 of file Article.php.
References $wgOut, $wgRedirectSources, Xml\escapeJsString(), getTitle(), Linker\linkKnown(), Linker\makeExternalLink(), wfMessage(), and wfRunHooks().
Referenced by view().
Show the footer section of an ordinary page view.
Definition at line 893 of file Article.php.
References $wgOut, getTitle(), IP\isValid(), showPatrolFooter(), and wfRunHooks().
Referenced by view().
Article::tryFileCache | ( | ) | [protected] |
checkLastModified returns true if it has taken care of all output to the client that is necessary for this request.
(that is, it has sent a cached version of the page)
Definition at line 1522 of file Article.php.
References getContext(), getTitle(), isFileCacheable(), newFromTitle(), and wfDebug().
Referenced by view().
action=unprotect handler (alias)
Definition at line 1266 of file Article.php.
References protect().
Article::unwatch | ( | ) |
User interface handler for the "unwatch" action.
Requires Request to pass a token as of 1.18.
Definition at line 1700 of file Article.php.
References Action\factory(), and wfDeprecated().
Article::updateRestrictions | ( | $ | limit = array() , |
$ | reason = '' , |
||
&$ | cascade = 0 , |
||
$ | expiry = array() |
||
) |
$limit | array |
$reason | string |
$cascade | int |
$expiry | array |
Definition at line 1809 of file Article.php.
References $limit.
Article::view | ( | ) |
This is the default action of the index.php entry point: just view the page of the given title.
Reimplemented in ImagePage, and CategoryPage.
Definition at line 402 of file Article.php.
References $pass, $wgDebugToolbar, $wgOut, $wgParser, $wgUseETag, $wgUseFileCache, $wgUser, adjustDisplayTitle(), fetchContent(), getContent(), getOldID(), getParserOptions(), getRevIdFetched(), getRobotPolicy(), getTitle(), isCurrent(), Title\newFromRedirectArray(), setOldSubtitle(), showCssOrJsPage(), showDeletedRevisionHeader(), showDiffPage(), showMissingArticle(), showNamespaceHeader(), showRedirectedFromHeader(), showViewFooter(), ParserCache\singleton(), tryFileCache(), viewRedirect(), wfDebug(), wfIncrStats(), wfMessage(), wfProfileIn(), wfProfileOut(), and wfRunHooks().
Referenced by render().
Article::viewRedirect | ( | $ | target, |
$ | appendSubtitle = true , |
||
$ | forceKnown = false |
||
) |
View redirect.
$target | Title|Array of destination(s) to redirect |
$appendSubtitle | Boolean [optional] |
$forceKnown | Boolean: should the image be shown as a bluelink regardless of existence? |
Definition at line 1200 of file Article.php.
References $title, $wgOut, $wgStylePath, Html\element(), getTitle(), Linker\link(), Linker\linkKnown(), and wfMsgHtml().
Referenced by ImagePage\view(), and view().
Article::watch | ( | ) |
User-interface handler for the "watch" action.
Requires Request to pass a token as of 1.18.
Definition at line 1676 of file Article.php.
References Action\factory(), and wfDeprecated().
Article::$mContent |
Definition at line 40 of file Article.php.
Article::$mContentLoaded = false |
Definition at line 41 of file Article.php.
Article::$mContext [protected] |
Definition at line 28 of file Article.php.
Article::$mOldId |
Definition at line 42 of file Article.php.
Article::$mPage [protected] |
Definition at line 33 of file Article.php.
Article::$mParserOptions |
Definition at line 38 of file Article.php.
Article::$mParserOutput |
Definition at line 63 of file Article.php.
Article::$mRedirectedFrom = null |
Definition at line 47 of file Article.php.
Article::$mRedirectUrl = false |
Definition at line 52 of file Article.php.
Article::$mRevIdFetched = 0 |
Definition at line 53 of file Article.php.
Article::$mRevision = null |
Definition at line 58 of file Article.php.