手册:Setup.php
MediaWiki文件: Setup.php | |
---|---|
位置: | includes/ |
源代码: | master • 1.42.3 • 1.41.4 • 1.39.10 |
类: | 查找代码 • 查找帮助文档 |
细节
Setup.php file is included from WebStart.php , provided the MW_NO_SETUP
constant is not defined.
它必須在 LocalSettings.php 之後插入。
采取的措施
It does the following:
- First it changes some configuration settings such as paths variables that aren't customized in
LocalSettings.php
so that they don't need to be modified if $wgScriptPath is changed or it updates new configuration settings from the backward compatible ones.
- Next it includes some commonly used files.
- It starts the PHP session if the session cookie or the user token cookie are present.
- It creates stub objects for global object variables, those globals will be unstubbed at the first call of one of their method.
- It runs all functions in $wgExtensionFunctions .
- And calls some deprecated hooks for backward compatibility: LogPageValidTypes , LogPageLogName , LogPageLogHeader and LogPageActionText .