Kézikönyv:Globálisobjektum-változók
Hundreds of globals are initialized on startup by MediaWiki. The majority of these global variables are configuration settings that are set in DefaultSettings.php and LocalSettings.php . (See Kézikönyv:Konfigurációs beállítások for documentation on these variables.) There is no comprehensive documentation for the remaining few hundred globals, however, some of the most important ones are listed below. They are typically initialized either in index.php or in Setup.php .
Global variables
- $mediaWiki - MediaWiki object, the main base class for the MediaWiki software. Initializes the
$wgTitle
and$wgArticle
objects, and executes the URL actions. - $wgArticle - Article object corresponding to
$wgTitle
. (elavultnak jelölve 1.19)(eltávolítva: 1.23) - $wgContLang - Language object associated with the wiki being viewed. (eltávolítva: 1.36)
- $wgLang - Language object selected by user preferences.
- $wgLoadBalancer - LoadBalancer object, manages database connections. (eltávolítva: 1.13)
- $wgMessageCache - Message cache to manage interface messages. (eltávolítva: 1.18)
- $wgOut - OutputPage object for HTTP response.
- $wgParser - Parser object. Parser extensions register their hooks here. (elavultnak jelölve 1.32)
- $wgRequest - WebRequest object, to get request data.
- $wgTitle - Title object created from the request URL. (elavultnak jelölve 1.19)
Megjegyzés: This variable should be avoided when possible, more sane title objects are usually available.
- $wgUser - User object for the user associated with the current request.