MediaWiki Softwares
This page describes key files and directories in the MediaWiki source code. For more detailed information, see the class, file and comprehensive references auto-generated from the MediaWiki source code using doxygen.
wiki root[modifier]
These are the files that a browser may reach when using the wiki. All of them are located in the root directory of the wiki, and each of them is paired with a .php5 wrapper, for web servers that require the .php5 extension to execute scripts with the PHP5 engine.
- index.php
- Main access point for the MediaWiki software. It handles most requests made to MediaWiki.
- api.php
- External access point for MediaWiki's API. The MediaWiki action API is a web service that provides convenient access to wiki features, data, and meta-data over HTTP, via a URL usually at api.php. Clients request particular "actions" by specifying an action parameter, mainly action=query to get information. It was known as the MediaWiki API, but there are now other web APIs available that connect to MediaWiki such as RESTBase and the Wikidata query service.
- load.php
- Script for the front-end to hook into for loading ResourceLoader modules.
- img_auth.php
- Script that only serves images to logged in users. To configure the wiki to use that script, see Manual:Image Authorisation.
- opensearch_desc.php
- Returns an OpenSearch description document that describes the web interface of MediaWiki's search engine.
- profileinfo.php
- Allow users to see the profiling information that are stored in the database. See Manual:How to debug#Profiling.
- redirect.php
- Script that redirects to the article passed in the wpDropdown parameter of the request. Needed for Nostalgia skin Removed in 1.22
- thumb.php
- Script used to resize images
- thumb_handler.php
- PHP script to be used as 404 handler to create and stream out a not yet existing image thumbnail.
- trackback.php
- Adds trackbacks to the database. Removed in MediaWiki 1.19 (r104051).
Except thumb_handler.php, which is a simple wrapper around thumb.php and thus does not have to re-include WebStart.php
1. That command also returns mw-config/index.php, but unlike the other files, it is not intended for repeated use during normal wiki operation; in other words, it is not an access point to reach wiki resources, but a one-off script to launch the configuration process of a newly installed wiki.
/cache/[modifier]
Default location for the file cache, if enabled (by setting $wgUseFileCache = true; — the default is false.). This location can be customized using $wgFileCacheDirectory.
/docs/[modifier]
Contains various text files that should help you understand the most important parts of the code of MediaWiki.
/extensions/[modifier]
Mediawiki extensions are distributed separately from the core code. Installing an extension entails copying its files into this directory, and enabling it by following the extension's own installation instructions (usually editing the LocalSettings.php file). In current versions a set of several extensions is distributed with a fresh MediaWiki install.
/includes/[modifier]
This directory stores common include files needed by MediaWiki.
- includes/Article.php
- Contains the Article class, which provides methods to view, modify and manage articles. This maintains WikiPage functions for backwards compatibility.
- includes/AutoLoader.php
- This defines autoloading handler for whole MediaWiki framework.
- includes/Defines.php
- Defines several constants, suchs as those for namespaces, which are used by other files and classes.
- includes/EditPage.php
- Provides much of the code related to the editing user interface
- includes/GlobalFunctions.php
- Contains globally used functions like wfMsgExt.
- includes/Linker.php
- Contains methods to create internal, external or image links and implements page existence detection.
- includes/Message.php
- Provides methods for: fetching interface messages; processing messages into a variety of formats. See Manual:Messages API.
- includes/OutputPage.php
- Hold HTML and wikitext parsing. Will also generate the <head> element or part of it.
- includes/Pager.php
- Contains the IndexPager class used for paging results of MySQL queries.
- includes/Parser.php
- Contains most of the code that converts wikitext to HTML (though few bits and pieces are in Manual:Skin.php).
- includes/Setup.php
- Include commonly used files and initializes the global object variables so that MediaWiki can work.
- includes/Skin.php
- Encapsulates a "look and feel" for the wiki.
- includes/SpecialPage.php
- Contains the SpecialPage class, which is the parent class for all special page classes. It also makes available several static functions for handling the special page list and several other special page classes, like RedirectSpecialPage and IncludableSpecialPage. See Manual:Special pages.
- includes/SiteStats.php
- Contains the SiteStats class for site statistics and related things.
- includes/TemplateParser.php
- Functions for utilizing HTML templates (not to be confused with WikiText templates)
- includes/Title.php
- Represents the title of an article, and does all the work of translating among various forms such as plain text, URL, database key, etc. For convenience, and for historical reasons, it also represents a few features of articles that don't involve their text, such as access rights.
- includes/User.php
- Encapsulates the state of the user viewing/using the site. Can be queried for things like the user's settings, name, etc. Handles the details of getting and saving to the user table of the database, and dealing with sessions and cookies.
- includes/UserMailer.php
- Collection of static functions for sending mail.
- includes/WebRequest.php
- This file contains the definition of the WebRequest class.
- includes/WebStart.php
- It does the initial setup for a web request: security checks, loads LocalSettings.php and Setup.php.
- includes/MediaWiki.php
- This file consists of the definition of the MediaWiki class.
- includes/PathRouter.php
- The class used for turning pretty urls into query arguments that MediaWiki can use.
- includes/WikiPage.php
- Contains the WikiPage class, which represents a page in the wiki.
/includes/actions/[modifier]
This directory contains the Action classes, which handle the different actions which can be performed on pages (e.g. view, delete, edit, etc.). All these classes extend the Action, FormlessAction or FormAction classes. Some of them are just stubs which call methods in the Article or EditPage classes to do the actual work.
- includes/actions/CreditsAction.php
- Handles formatting the credits for articles. See also Manual:$wgMaxCredits.
- includes/actions/DeleteAction.php
- Handles page deletion.
- includes/actions/EditAction.php
- Contains classes EditAction and SubmitAction which handle the edit and submitting actions.
- includes/actions/HistoryAction.php
- Handles printing the history page for an article.
- includes/actions/InfoAction.php
- Displays informations about a page, like the total number of edits and number of unique editors.
- includes/actions/MarkpatrolledAction.php
- Handles marking a revision as patrolled.
- includes/actions/ProtectAction.php
- Handles protecting a page.
- includes/actions/PurgeAction.php
- Handles purging a page.
- includes/actions/RawAction.php
- Handles the "action=raw" action.
- includes/actions/RenderAction.php
- Handles the render action, which shows an HTML rendering of the page; similar to the view action, but only the unstyled article text is shown, not the additional toolboxes, search boxes, stylesheets, etc.
- includes/actions/RevertAction.php
- Contains class RevertFileAction, which handles reverting a file.
- includes/actions/RevisiondeleteAction.php
- Handles the revision delete action by just passing the request to Special:RevisionDelete.
- includes/actions/RollbackAction.php
- Handles rolling back a page.
- includes/actions/ViewAction.php
- Handles the viewing of a page, by calling Article::view().
- includes/actions/WatchAction.php
- Contains classes WatchAction and UnwatchAction, which handle watching and unwatching a page.
/includes/api/[modifier]
This directory contains the code for the MediaWiki API. See API:Main page. The most important files are:
- includes/api/ApiBase.php
- The base class for all API classes. Has a lot of common code for all API actions. Inherits ContextSource class
- includes/api/ApiFormatBase.php
- The base class for all formatting classes. Inherits ApiBase.
- includes/api/ApiQueryBase.php
- The base class for all query API classes. Inherits ApiBase.
/includes/cache/[modifier]
This directory contains files with code relating to MediaWiki's caching mechanisms.
- cache/FileCacheBase.php
- The FileCacheBase class is the base class for classes which provide a file based cache scheme. See Manual:File cache.
- cache/GenderCache.php
- Caches user genders when needed to use correct namespace aliases.
- cache/HTMLCacheUpdate.php
- Invalidates the HTML cache of all the pages linking to a given title.
- HTMLFileCache.php
- File based caching of HTML pages.
- cache/LinkBatch.php
- The LinkBatch class represents a list of titles.
- cache/LinkCache.php
- Caching for article titles (prefixed DB keys) and ids linked from one source. See also LINKCACHE.TXT.
- cache/MemcachedSessions.php
- This file gets included if $wgSessionsInMemcache is set in the config. It redirects session handling functions to store their data in memcached instead of the local filesystem.
- cache/MessageCache.php
- Performs various MediaWiki namespace-related functions.
- cache/ObjectFileCache.php
- File based caching of objects.
- cache/ResourceFileCache.php
- File based caching of JavaScript and CSS resources.
- cache/SquidUpdate.php
- Handles purging appropriate Squid URLs given a title (or titles).
/includes/context/[modifier]
This directory contains a few classes related to (request) contexts. As of MediaWiki 1.18 the context of a request is encapsulated inside a RequestContext instance which implements IContextSource. A context is a way of grouping the parts of a request together. This reduces the need for globals. See Manual:RequestContext.php for more information.
- includes/context/ContextSource.php
- The ContextSource class implements the IContextSource interface. It is a helper class: by making a class extend ContextSource the class will be provided with the various getOutput, getSkin, getLanguage, etc. helpers directly and will implement IContextSource.
- includes/context/DerivativeContext.php
- A DerivativeContext is an IContextSource implementation which will inherit context from another source but allows individual pieces of context to be changed locally.
- includes/context/IContextSource.php
- This file contains the IContextSource interface. This interface should be implemented by objects which provide a context on a request.
- includes/context/RequestContext.php
- A RequestContext object groups all the pieces relevant to the context of a request into one instance.
/includes/db/[modifier]
This directory contains the code for database support. Database.php provides MediaWiki's database abstraction layer.
/includes/diff/[modifier]
This directory contains the standard MediaWiki difference engine. A difference engine computes the difference between two texts. Whether this difference engine is used or some external diff tool, depends on the $wgExternalDiffEngine setting.
- includes/diff/DairikiDiff.php
- The DairikiDiff engine. Currently the standard diff engine. The file defines several related classes.
- includes/diff/DifferenceEngine.php
- The DifferenceEngine class the interface between MediaWiki and whichever difference engine is used. Which difference engine is used depends on the $wgExternalDiffEngine config setting.
- includes/diff/WikiDiff3.php
- Another diff engine. Currently not in use.
/includes/jobqueue/jobs/[modifier]
Files related to the job queue. Each job class for a specific type of job derives from the Job class and has to implement a run() method which does the actual job.
- includes/job/DoubleRedirectJob.php
- Job to fix double redirects after moving a page
- includes/job/EnotifNotifyJob.php
- Job for email notification.
- includes/job/JobQueue.php
- Contains the Job class. This is the abstract class to describe a background job. The class also contains static functions for handling jobs (insert jobs in the queue and pop jobs from the queue).
- includes/job/RefreshLinksJob.php
- Contains the RefreshLinksJob and RefreshLinksJob2 classes for jobs to update links for a given title. They use class LinksUpdate (defined in /includes/LinksUpdate.php) to update several db tables.
- includes/job/UploadFromUrlJob.php
- Job for asynchronous upload-by-url. Its an interface to the UploadFromUrl class in /includes/upload/UploadFromUrl.php.
/includes/logging/[modifier]
Some files related to logging the events which happen on a Wiki. This directory was introduced in MW 1.19. Some of the files were already present in olders versions, in the includes/ directory.
- includes/logging/LogEntry.php
- Contains the LogEntry interface and some classes implementing this interface to encapsulate log entries. Introduced in MW 1.19.
- includes/logging/LogEventsList.php
- A class to list log entries.
- includes/logging/LogFormatter.php
- Contains several classes for formatting log entries. Introduced in MW 1.19.
- includes/logging/LogPage.php
- Class to manage a log: add entries to the log and extract information from the log.
- includes/logging/LogPager.php
- Class to list log entries. Implements the ReverseChronologicalPager class.
- includes/logging/PatrolLog.php
- Class containing static functions for working with logs of patrol events.
/includes/media/[modifier]
This directory contains files for handling several media formats, mostly images.
/includes/normal/[modifier]
This directory contains some Unicode normalization routines. See includes/normal/README for more information.
/includes/objectcache/[modifier]
Files related to MediaWiki's caching mechanisms. The files in this directory provide the possibility to store objects in PHP accelerators, in memcached, in a database or in DBA files.
- includes/objectcache/APCBagOStuff.php
- Implementation of BagOStuff for APC's shared memory functions.
- includes/objectcache/BagOStuff.php
- Abstract class to be derived by classes which cache objects in PHP accelerators, SQL database or DBA files. It specifies the methods a cache class must provide, like get(), set(), delete(), etc.
- includes/objectcache/DBABagOStuff.php
- Implementation of BagOStuff which uses PHP's DBA extension as a backend.
- includes/objectcache/EhcacheBagOStuff.php
- Implementation of BagOStuff using the Ehcache RESTful web service.
- includes/objectcache/EmptyBagOStuff.php
- Emulates an empty BagOStuff.
- includes/objectcache/MemcachedClient.php
- Contains the MWMemcached class, a PHP memcache client.
- includes/objectcache/MemcachedPhpBagOStuff.php
- Implementation of BagOStuff using memcached. It uses the MWMemcached class as a pure PHP memcached client.
- includes/objectcache/MultiWriteBagOStuff.php
- Implementation of BagOStuff that replicates all writes to multiple child caches.
- includes/objectcache/ObjectCache.php
- The ObjectCache class contains some static helper functions for caching objects.
- includes/objectcache/SqlBagOStuff.php
- Implementation of BagOStuff using a database.
- includes/objectcache/inCacheBagOStuff.php
- Implementation of BagOStuff using WinCache.
- includes/objectcache/CacheBagOStuff.php
- Implementation of BagOStuff using XCache.
/includes/parser/[modifier]
The MediaWiki parser, which transforms wikitext to HTML, can be found here together with related files. The most interesting files in this directory:
- includes/parser/CoreParserFunctions.php
- A collection of functions which implement the core parser functions.
- includes/parser/CoreTagHooks.php
- Tag hooks provided by MediaWiki core, e.g. \nowiki\, \gallery\, \pre\, ..
- includes/parser/LinkHolderArray.php
- A LinkHolderArray holds a set of replacement pairs for wiki links.
- includes/parser/Parser.php
- This file contains the parser. A few regular expressions are included.
- includes/parser/ParserCache.php
- This class handles caching the output from the parser.
- includes/parser/ParserOptions.php
- The ParserOptions class holds a collection of options for the parser.
- includes/parser/ParserOutput.php
- Contains the ParserOutput class, which encapsulates the output of the parser.
- includes/parser/Preprocessor.php
- Contains the Preprocessor interface for preprocessors. Also contains the PPFrame and PPNode interfaces.
- includes/parser/Preprocessor_DOM.php
- A preprocessor using PHP's DOM extension. This preprocessor is used if the PHP DOM extension is available.
- includes/parser/Preprocessor_Hash.php
- A preprocessor using PHP arrays. This preprocessor is used if the PHP DOM isn't available or when the old XMLDOM extension is present.
- includes/parser/Preprocessor_HipHop.php
- A preprocessor optimised for HipHop, using HipHop-specific syntax.
/includes/resourceloader/[modifier]
Files related to ResourceLoader, a JavaScript/CSS delivery optimizing system for MediaWiki.
/includes/search/[modifier]
This directory contains the code to implement the possibility of searching a wiki using one the possible backends.
- includes/search/SearchEngine.php
- Contains several classes related to searching a wiki. The SearchEngine class is the parent class for specific search implementations.
- includes/search/SearchIBM_DB2.php
- Implements SearchEngine using IBM DB2.
- includes/search/SearchMssql.php
- Implements SearchEngine using Msssql.
- includes/search/SearchMySQL.php
- Implements SearchEngine using a MySQL search engine.
- includes/search/SearchOracle.php
- Implements SearchEngine using Oracle (ConText).
- includes/search/SearchSqlite.php
- Implements SearchEngine using SQLite.
/includes/specials/[modifier]
This directory contains the code and classes for the standard special pages. All special page classes derive from class SpecialPage (defined in [1]]). Special pages which come with extension are located in their respective extensions directories. See also Manual:Special pages.
/includes/upload/[modifier]
Files providing the backend of MediaWiki's file upload feature.
- includes/upload/UploadBase.php
- UploadBase and subclasses are the backend of MediaWiki's file uploads.
- includes/upload/UploadFromChunks.php
- Subclass of UploadBase implementing uploading from chunks.
- includes/upload/UploadFromFile.php
- Subclass of UploadBase implementing regular file uploads.
- includes/upload/UploadFromStash.php
- Subclass of UploadBase implementing uploading from previously stored file.
- includes/upload/UploadFromUrl.php
- Subclass of UploadBase implementing uploading from a HTTP resource.
- includes/upload/UploadStash.php
- Provides the possibility to enable applications to temporarily stash files without publishing them to the wiki.
/images/[modifier]
If uploads are enabled in the wiki, files will be put in subdirectories under this directory. See Manual:Image administration#Folders for more details.
/languages/[modifier]
This directory contains files used for localization and internationalization. For a quick overview, see Language in MediaWiki.
- languages/Language.php
- Contains the Language class, it represents the language used for incidental text, and also has some character encoding functions and other locale stuff. Two globals contain an instance of this class: $wgContLang for the site language and $wgLang for the user language.
/maintenance/[modifier]
This directory contains maintenance scripts that must be run from a command line interface.
See Manual:Maintenance scripts for an overview of those scripts.
/mw-config/[modifier]
Entry point for the Config script (the helper script that helps setting up a newly installed wiki). The actual code of the installer is located at /includes/installer/.
/resources/[modifier]
This directory contains JavaScript and CSS resources used by MediaWiki, including jQuery.
It also contains binary files like PNG and SVG images, for instance in resources/src/mediawiki/images/: see Manual:Assets.
/serialized/[modifier]
Location for serialized objects (database entries converted into files -- see Serialization for more information). The database tables that contain serialized data are listed at Manual:Serialization.
/skins/[modifier]
This directory contain all skins classes, JavaScripts, CSS and some images used by that skins. See Manual:Skins.
/tests/[modifier]
Contains various (unit)test related files, including:
- Parser tests
- PHPUnit tests
- QUnit tests
- browser tests for some core features