MediaWiki  REL1_19
Article Class Reference

Class for viewing MediaWiki article and history. More...

Inheritance diagram for Article:
Collaboration diagram for Article:

List of all members.

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

Detailed Description

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.


Constructor & Destructor Documentation

Article::__construct ( Title title,
oldId = null 
)

Constructor and clear the article.

Parameters:
$titleTitle Reference to a Title object.
$oldIdInteger revision ID, null to fetch from request, zero for current

Definition at line 72 of file Article.php.

References newPage().

Here is the call graph for this function:


Member Function Documentation

Article::__call ( fname,
args 
)

Use PHP's magic __call handler to transform instance calls to WikiPage functions for backwards compatibility.

Parameters:
$fnameString Name of called method
$argsArray 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.

Parameters:
$fnameString 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.

Parameters:
$fnameString Field name
$fvaluemixed New value

Definition at line 1761 of file Article.php.

References $fname.

Adjust title for pages with displaytitle, -{T|}- or language conversion.

Parameters:
$pOutputParserOutput

Definition at line 656 of file Article.php.

References $wgOut, and ParserOutput\getTitleText().

Referenced by view().

Here is the call graph for this function:

Here is the caller graph for this function:

Clear the object.

Definition at line 173 of file Article.php.

Article::commitRollback ( fromP,
summary,
bot,
&$  resultDetails,
User guser = null 
)
Parameters:
$fromP
$summary
$bot
$resultDetails
$guserUser
Returns:
array

Definition at line 1848 of file Article.php.

References $wgUser.

Article::confirmDelete ( reason)

Output deletion confirmation dialog.

Todo:
FIXME: Move to another file?
Parameters:
$reasonString: 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().

Here is the call graph for this function:

Here is the caller graph for this function:

Article::doDelete ( reason,
suppress = false 
)

Perform a deletion and output success or failure messages.

Parameters:
$reason
$suppressbool

Definition at line 1480 of file Article.php.

References $wgOut, Xml\element(), getTitle(), LogPage\logName(), LogEventsList\showLogExtract(), wfEscapeWikiText(), wfMessage(), and wfMsgNoTrans().

Referenced by delete().

Here is the call graph for this function:

Here is the caller graph for this function:

Article::doDeleteArticle ( reason,
suppress = false,
id = 0,
commit = true,
&$  error = '' 
)
Parameters:
$reasonstring
$suppressbool
$idint
$commitbool
$errorstring
Returns:
bool

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.

Deprecated:
in 1.18; call $wgOut->redirect() directly
Parameters:
$noRedirBoolean: add redirect=no
$sectionAnchorString: section to redirect to, including "#"
$extraQueryString: extra query params

Definition at line 1725 of file Article.php.

References $wgOut, getTitle(), and wfDeprecated().

Here is the call graph for this function:

Article::doRollback ( fromP,
summary,
token,
bot,
&$  resultDetails,
User user = null 
)
Parameters:
$fromP
$summary
$token
$bot
$resultDetails
$userUser
Returns:
array

Definition at line 1834 of file Article.php.

References $user, and $wgUser.

Stop watching a page.

Returns:
bool true on successful unwatch
Deprecated:
since 1.18

Definition at line 1710 of file Article.php.

References $wgUser, getTitle(), and wfDeprecated().

Referenced by delete().

Here is the call graph for this function:

Here is the caller graph for this function:

Article::doUpdateRestrictions ( array $  limit,
array $  expiry,
&$  cascade,
reason,
User user 
)
Parameters:
$limitarray
$expiryarray
$cascadebool
$reasonstring
$userUser
Returns:
Status

Definition at line 1798 of file Article.php.

Add this page to $wgUser's watchlist.

This is safe to be called multiple times

Returns:
bool true on successful watch operation
Deprecated:
since 1.18

Definition at line 1689 of file Article.php.

References $wgUser, getTitle(), and wfDeprecated().

Referenced by delete().

Here is the call graph for this function:

Here is the caller graph for this function:

Get text of an article from database Does *NOT* follow redirects.

Returns:
mixed string containing article contents, or false if null

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().

Here is the call graph for this function:

Here is the caller graph for this function:

static Article::formatRobotPolicy ( policy) [static]

Converts a String robot policy into an associative array, to allow merging of several policies using array_merge().

Parameters:
$policyMixed, returns empty array on null/false/'', transparent to already-converted arrays, converts String.
Returns:
Array: 'index' => <indexpolicy>, 'follow' => <followpolicy>

Definition at line 799 of file Article.php.

Referenced by getRobotPolicy(), and OutputPage\setRobotPolicy().

Here is the caller graph for this function:

No-op.

Deprecated:
since 1.18

Definition at line 354 of file Article.php.

References wfDeprecated().

Here is the call graph for this function:

Article::generateReason ( &$  hasHistory)
Parameters:
$hasHistorybool
Returns:
mixed

Definition at line 1858 of file Article.php.

Referenced by delete().

Here is the caller graph for this function:

static Article::getAutosummary ( oldtext,
newtext,
flags 
) [static]
Parameters:
$oldtext
$newtext
$flags
Returns:
string

Definition at line 1898 of file Article.php.

Referenced by ArticleTest\testStaticFunctions().

Here is the caller graph for this function:

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.

Returns:
Return the text of this revision

Reimplemented in ImagePage.

Definition at line 193 of file Article.php.

References $wgUser, fetchContent(), getTitle(), wfMsgExt(), wfProfileIn(), and wfProfileOut().

Referenced by view().

Here is the call graph for this function:

Here is the caller graph for this function:

Gets the context this Article is executed in.

Returns:
IContextSource
Since:
1.18

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().

Here is the call graph for this function:

Here is the caller graph for this function:

Returns:
int The oldid of the article that is to be shown, 0 for the current revision

Definition at line 224 of file Article.php.

References getOldIDFromRequest().

Referenced by fetchContent(), getRobotPolicy(), isCurrent(), showDeletedRevisionHeader(), showDiffPage(), showMissingArticle(), and view().

Here is the call graph for this function:

Here is the caller graph for this function:

Sets $this->mRedirectUrl to a correct URL if the query parameters are incorrect.

Returns:
int The old id for the request

Definition at line 237 of file Article.php.

References getTitle(), and Revision\newFromId().

Referenced by getOldID().

Here is the call graph for this function:

Here is the caller graph for this function:

Get the WikiPage object of this instance.

Since:
1.19
Returns:
WikiPage

Definition at line 166 of file Article.php.

Get parser options suitable for rendering the primary article wikitext.

Returns:
ParserOptions|false

Definition at line 1593 of file Article.php.

References $wgUser.

Referenced by view().

Here is the caller graph for this function:

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.

Since:
1.16 (r52326) for LiquidThreads
Parameters:
$oldidmixed integer Revision ID or null
$userUser The relevant user
Returns:
ParserOutput or false if the given revsion ID is not found

Definition at line 1580 of file Article.php.

References $user, and $wgUser.

Use this to fetch the rev ID used on page views.

Returns:
int revision ID of last article revision

Definition at line 390 of file Article.php.

Referenced by view().

Here is the caller graph for this function:

Get the fetched Revision object depending on request parameters or null on failure.

Since:
1.19
Returns:
Revision|null

Definition at line 379 of file Article.php.

References fetchContent().

Here is the call graph for this function:

Article::getRobotPolicy ( action,
pOutput 
)

Get the robot policy to be used for the current view.

Parameters:
$actionString the action= GET parameter
$pOutputParserOutput
Returns:
Array the policy that should be set TODO: actions other than 'view'

Definition at line 724 of file Article.php.

References $wgArticleRobotPolicies, $wgDefaultRobotPolicy, $wgNamespaceRobotPolicies, $wgOut, formatRobotPolicy(), getOldID(), getTitle(), and Block\newFromTarget().

Referenced by view().

Here is the call graph for this function:

Here is the caller graph for this function:

Info about this page.

Deprecated:
since 1.19

Definition at line 1631 of file Article.php.

References Action\factory(), and wfDeprecated().

Here is the call graph for this function:

Returns true if the currently-referenced revision is the current edit to this page (and it exists).

Returns:
bool

Definition at line 363 of file Article.php.

References getOldID().

Referenced by view().

Here is the call graph for this function:

Here is the caller graph for this function:

Check if the page can be cached.

Returns:
bool

Definition at line 1552 of file Article.php.

References getContext(), getTitle(), HTMLFileCache\useFileCache(), and wfRunHooks().

Referenced by tryFileCache().

Here is the call graph for this function:

Here is the caller graph for this function:

Load the revision (including text) into this object.

Deprecated:
in 1.19; use fetchContent()

Definition at line 285 of file Article.php.

References fetchContent(), and wfDeprecated().

Here is the call graph for this function:

Mark this particular edit/page as patrolled.

Deprecated:
since 1.18

Definition at line 1640 of file Article.php.

References Action\factory(), and wfDeprecated().

Here is the call graph for this function:

static Article::newFromID ( id) [static]

Constructor from a page id.

Parameters:
$idInt article ID to load
Returns:
Article|null

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.

Parameters:
$titleTitle
$contextIContextSource
Returns:
Article object

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().

Here is the call graph for this function:

Here is the caller graph for this function:

static Article::newFromWikiPage ( WikiPage page,
IContextSource context 
) [static]

Create an Article object of the appropriate class for the given page.

Parameters:
$pageWikiPage
$contextIContextSource
Returns:
Article object

Definition at line 136 of file Article.php.

References $page, WikiPage\getTitle(), and newFromTitle().

Here is the call graph for this function:

Article::newPage ( Title title) [protected]
Parameters:
$titleTitle
Returns:
WikiPage

Reimplemented in ImagePage, and CategoryPage.

Definition at line 81 of file Article.php.

Referenced by __construct().

Here is the caller graph for this function:

static Article::onArticleCreate ( title) [static]
Parameters:
$titleTitle

Definition at line 1874 of file Article.php.

References $title.

static Article::onArticleDelete ( title) [static]
Parameters:
$titleTitle

Definition at line 1881 of file Article.php.

References $title.

static Article::onArticleEdit ( title) [static]
Parameters:
$titleTitle

Definition at line 1888 of file Article.php.

References $title.

action=protect handler

Definition at line 1258 of file Article.php.

Referenced by unprotect().

Here is the caller graph for this function:

Handle action=purge.

Deprecated:
since 1.19

Definition at line 1649 of file Article.php.

References Action\factory().

Here is the call graph for this function:

Handle action=render.

Reimplemented in ImagePage.

Definition at line 1248 of file Article.php.

References $wgOut, and view().

Here is the call graph for this function:

Handle action=revert.

Deprecated:
since 1.19

Definition at line 1657 of file Article.php.

References Action\factory(), and wfDeprecated().

Here is the call graph for this function:

Handle action=rollback.

Deprecated:
since 1.19

Definition at line 1666 of file Article.php.

References Action\factory(), and wfDeprecated().

Here is the call graph for this function:

static Article::selectFields ( ) [static]
Returns:
array

Definition at line 1867 of file Article.php.

Referenced by ArticleTest\testStaticFunctions().

Here is the caller graph for this function:

Article::setContext ( context)

Sets the context this Article is executed in.

Parameters:
$contextIContextSource
Since:
1.18

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 ->

Parameters:
$oldidString: 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().

Here is the call graph for this function:

Here is the caller graph for this function:

Tell the page view functions that this view was redirected from another page on the wiki.

Parameters:
$fromTitle 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().

Here is the call graph for this function:

Here is the caller graph for this function:

If the revision requested for view is deleted, check permissions.

Send either an error message or a warning header to $wgOut.

Returns:
boolean true if the view is allowed, false if not.

Definition at line 1034 of file Article.php.

References $wgOut, Revision\DELETED_RESTRICTED, Revision\DELETED_TEXT, getOldID(), and getTitle().

Referenced by view().

Here is the call graph for this function:

Here is the caller graph for this function:

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().

Here is the call graph for this function:

Here is the caller graph for this function:

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().

Here is the call graph for this function:

Here is the caller graph for this function:

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().

Here is the call graph for this function:

Here is the caller graph for this function:

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().

Here is the call graph for this function:

Here is the caller graph for this function:

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.

Returns:
boolean

Definition at line 828 of file Article.php.

References $wgOut, $wgRedirectSources, Xml\escapeJsString(), getTitle(), Linker\linkKnown(), Linker\makeExternalLink(), wfMessage(), and wfRunHooks().

Referenced by view().

Here is the call graph for this function:

Here is the caller graph for this function:

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().

Here is the call graph for this function:

Here is the caller graph for this function:

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)

Returns:
boolean true if cached version send, false otherwise

Definition at line 1522 of file Article.php.

References getContext(), getTitle(), isFileCacheable(), newFromTitle(), and wfDebug().

Referenced by view().

Here is the call graph for this function:

Here is the caller graph for this function:

action=unprotect handler (alias)

Definition at line 1266 of file Article.php.

References protect().

Here is the call graph for this function:

User interface handler for the "unwatch" action.

Requires Request to pass a token as of 1.18.

Deprecated:
since 1.18

Definition at line 1700 of file Article.php.

References Action\factory(), and wfDeprecated().

Here is the call graph for this function:

Article::updateRestrictions ( limit = array(),
reason = '',
&$  cascade = 0,
expiry = array() 
)
Parameters:
$limitarray
$reasonstring
$cascadeint
$expiryarray
Returns:
bool

Definition at line 1809 of file Article.php.

References $limit.

Article::viewRedirect ( target,
appendSubtitle = true,
forceKnown = false 
)

View redirect.

Parameters:
$targetTitle|Array of destination(s) to redirect
$appendSubtitleBoolean [optional]
$forceKnownBoolean: should the image be shown as a bluelink regardless of existence?
Returns:
string containing HMTL with redirect link

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().

Here is the call graph for this function:

Here is the caller graph for this function:

User-interface handler for the "watch" action.

Requires Request to pass a token as of 1.18.

Deprecated:
since 1.18

Definition at line 1676 of file Article.php.

References Action\factory(), and wfDeprecated().

Here is the call graph for this function:


Member Data Documentation

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.


The documentation for this class was generated from the following file: