MediaWiki
1.30.0
|
Interface for objects which can provide a MediaWiki context on request. More...
Public Member Functions | |
canUseWikiPage () | |
Check whether a WikiPage object can be get with getWikiPage(). More... | |
exportSession () | |
Export the resolved user IP, HTTP headers, user ID, and session ID. More... | |
getConfig () | |
Get the site configuration. More... | |
getLanguage () | |
Get the Language object. More... | |
getOutput () | |
Get the OutputPage object. More... | |
getRequest () | |
Get the WebRequest object. More... | |
getSkin () | |
Get the Skin object. More... | |
getStats () | |
Get the stats object. More... | |
getTiming () | |
Get the timing object. More... | |
getTitle () | |
Get the Title object. More... | |
getUser () | |
Get the User object. More... | |
getWikiPage () | |
Get the WikiPage object. More... | |
Public Member Functions inherited from MessageLocalizer | |
msg ( $key) | |
This is the method for getting translated interface messages. More... | |
Interface for objects which can provide a MediaWiki context on request.
Context objects contain request-dependent objects that manage the core web request/response logic for essentially all requests to MediaWiki. The contained objects include: a) Key objects that depend (for construction/loading) on the HTTP request b) Key objects used for response building and PHP session state control c) Performance metric deltas accumulated from request execution d) The site configuration object All of the objects are useful for the vast majority of MediaWiki requests. The site configuration object is included on grounds of extreme utility, even though it should not actually depend on the web request.
More specifically, the scope of the context includes: a) Objects that represent the HTTP request/response and PHP session state b) Object representing the MediaWiki user (as determined by the HTTP request) c) Primary MediaWiki output builder objects (OutputPage, user skin object) d) The language object for the user/request e) The title and wiki page objects requested via URL (if any) f) Performance metric deltas accumulated from request execution g) The site configuration object
This class is not intended as a service-locator nor a service singleton. Objects that only depend on site configuration do not belong here (aside from Config itself). Objects that represent persistent data stores do not belong here either. Session state changes should only be propagated on shutdown by separate persistence handler objects, for example.
Definition at line 55 of file IContextSource.php.
IContextSource::canUseWikiPage | ( | ) |
Check whether a WikiPage object can be get with getWikiPage().
Callers should expect that an exception is thrown from getWikiPage() if this method returns false.
Implemented in RequestContext, DerivativeContext, and ContextSource.
IContextSource::exportSession | ( | ) |
Export the resolved user IP, HTTP headers, user ID, and session ID.
The result will be reasonably sized to allow for serialization.
Implemented in RequestContext, and ContextSource.
IContextSource::getConfig | ( | ) |
Get the site configuration.
Implemented in DerivativeContext, RequestContext, and ContextSource.
Referenced by MediaWiki\__construct(), CategoryViewer\__construct(), ImageGalleryBase\factory(), ApiHelp\getHelp(), MediaWiki\preOutputCommit(), and ChangesList\showCharacterDifference().
IContextSource::getLanguage | ( | ) |
Get the Language object.
Implemented in RequestContext, DerivativeContext, and ContextSource.
Referenced by ApiHelp\getHelp(), ApiHelp\getHelpInternal(), Block\getPermissionsError(), ChangesList\showCharacterDifference(), LogEventsList\showLogExtract(), and MediaWiki\Auth\AuthManagerTest\testSetDefaultUserOptions().
IContextSource::getOutput | ( | ) |
Get the OutputPage object.
Implemented in RequestContext, DerivativeContext, and ContextSource.
Referenced by ApiHelp\execute(), ApiHelp\getHelp(), and MediaWiki\preOutputCommit().
IContextSource::getRequest | ( | ) |
Get the WebRequest object.
Implemented in DerivativeContext, RequestContext, and ContextSource.
Referenced by ChangesList\newFromContext(), MediaWiki\preOutputCommit(), and MediaWiki\run().
IContextSource::getSkin | ( | ) |
Get the Skin object.
Implemented in RequestContext, DerivativeContext, and ContextSource.
Referenced by ApiParse\execute(), and ChangesList\newFromContext().
IContextSource::getStats | ( | ) |
Get the stats object.
Implemented in ContextSource, RequestContext, and DerivativeContext.
IContextSource::getTiming | ( | ) |
Get the timing object.
Implemented in ContextSource, RequestContext, and DerivativeContext.
IContextSource::getTitle | ( | ) |
Get the Title object.
Implemented in HTMLForm, ImageListPager, AllMessagesTablePager, RequestContext, DerivativeContext, ContextSource, ImageHistoryPseudoPager, and ProtectedTitlesPager.
Referenced by MediaWiki\run().
IContextSource::getUser | ( | ) |
Get the User object.
Implemented in RequestContext, DerivativeContext, and ContextSource.
Referenced by ChangesList\newFromContext().
IContextSource::getWikiPage | ( | ) |
Get the WikiPage object.
May throw an exception if there's no Title object set or the Title object belongs to a special namespace that doesn't have WikiPage, so use first canUseWikiPage() to check whether this method can be called safely.
Implemented in RequestContext, DerivativeContext, and ContextSource.