Manual:Index.php
Jump to navigation
Jump to search
Archivo de MediaWiki: index.php | |
---|---|
Ubicación: | / |
Código fuente: | master • 1.35.1 • 1.31.12 |
Clases: | Buscar código • Buscar documentación |
'index.php' es el punto de entrada principal para un sitio MediaWiki. El otro punto de entrada principal es api.php , que maneja las solicitudes para la API de MediaWiki.
Acciones tomadas
Versión de MediaWiki: | ≥ 1.18 |
Más resultados de solicitudes de las siguientes acciones en index.php
:
- Ensure the version of PHP is supported, otherwise display an error.
- First, it includes WebStart.php , which mainly just includes Setup.php . This in turn sets up the PHP environment for MediaWiki, such as installing the class autoloader, including the vendor dependencies loading DefaultSettings.php , and applying the site's LocalSettings.php file.
- Next, it instantiates the MediaWiki class from MediaWiki.php , which is responsible for interpreting URL parameters like "title" and "action" to determine what the current request should do. It then dispatches the relevant Action subclass to do that thing.
- Finally,
MediaWiki::restInPeace()
is called, which does things like closing database transactions, and running any deferred updates .