108 parent::__construct(
$name, $data, $dataName );
110 $this->backupGlobals =
false;
111 $this->backupStaticAttributes =
false;
117 if ( isset( $this->called[
'setUp'] ) && !isset( $this->called[
'tearDown'] ) ) {
123 parent::setUpBeforeClass();
126 self::$serviceLocator = self::prepareServices(
new GlobalVarConfig() );
162 return self::getTestUser( [
'sysop',
'bureaucrat' ] );
188 $services = self::resetGlobalServices( $bootstrapConfig );
207 $oldServices = MediaWikiServices::getInstance();
208 $oldConfigFactory = $oldServices->getConfigFactory();
210 $testConfig = self::makeTestConfig( $bootstrapConfig );
212 MediaWikiServices::resetGlobalInstance( $testConfig );
215 self::installTestServices(
232 Config $baseConfig = null,
233 Config $customOverrides = null
237 if ( !$baseConfig ) {
238 $baseConfig = MediaWikiServices::getInstance()->getBootstrapConfig();
245 $hashCache = [
'class' =>
'HashBagOStuff',
'reportDupes' =>
false ];
251 'xcache' => $hashCache,
252 'wincache' => $hashCache,
253 ] + $baseConfig->get(
'ObjectCaches' );
255 $defaultOverrides->set(
'ObjectCaches', $objectCaches );
256 $defaultOverrides->set(
'MainCacheType',
CACHE_NONE );
257 $defaultOverrides->set(
'JobTypeConf', [
'default' => [
'class' =>
'JobQueueMemory' ] ] );
260 $defaultOverrides->set(
'PasswordDefault',
'A' );
262 $testConfig = $customOverrides
263 ?
new MultiConfig( [ $customOverrides, $defaultOverrides, $baseConfig ] )
264 :
new MultiConfig( [ $defaultOverrides, $baseConfig ] );
285 self::makeTestConfigFactoryInstantiator(
287 [
'main' => $bootstrapConfig ]
300 array $configurations
306 $namesToClone = array_diff(
308 array_keys( $configurations )
311 foreach ( $namesToClone
as $name ) {
312 $factory->register( $name, $oldFactory->
makeConfig( $name ) );
315 foreach ( $configurations
as $name => $config ) {
316 $factory->register( $name, $config );
339 $services = MediaWikiServices::getInstance();
340 $services->resetServiceForTesting(
'MainObjectStash' );
341 $services->resetServiceForTesting(
'LocalServerObjectCache' );
342 $services->getMainWANObjectCache()->clearProcessCache();
347 if ( session_id() !==
'' ) {
348 session_write_close();
356 public function run( PHPUnit_Framework_TestResult
$result = null ) {
360 $needsResetDB =
false;
362 if ( !self::$dbSetup || $this->
needsDB() ) {
365 self::$useTemporaryTables = !$this->
getCliArg(
'use-normal-tables' );
366 self::$reuseDB = $this->
getCliArg(
'reuse-db' );
372 if ( !self::$dbSetup ) {
376 if ( ( $this->db->getType() ==
'oracle' || !self::$useTemporaryTables ) && self::$reuseDB ) {
377 $this->
resetDB( $this->db, $this->tablesUsed );
389 $needsResetDB =
true;
394 if ( $needsResetDB ) {
395 $this->
resetDB( $this->db, $this->tablesUsed );
408 $first = !isset( $this->db->_hasDataForTestClass )
409 || $this->db->_hasDataForTestClass !== $class;
411 $this->db->_hasDataForTestClass = $class;
421 return self::$useTemporaryTables;
434 $fileName = tempnam(
wfTempDir(),
'MW_PHPUnit_' . get_class( $this ) .
'_' );
435 $this->tmpFiles[] = $fileName;
465 $this->called[
'setUp'] =
true;
467 $this->phpErrorLevel = intval( ini_get(
'error_reporting' ) );
470 foreach ( $this->tmpFiles
as $fileName ) {
471 if ( is_file( $fileName ) || ( is_link( $fileName ) ) ) {
473 } elseif ( is_dir( $fileName ) ) {
478 if ( $this->
needsDB() && $this->db ) {
480 while ( $this->db->trxLevel() > 0 ) {
481 $this->db->rollback( __METHOD__,
'flush' );
484 if ( $this->db->getType() ===
'mysql' ) {
485 $this->db->query(
"SET sql_mode = 'STRICT_ALL_TABLES'" );
494 $lbFactory = MediaWikiServices::getInstance()->getDBLoadBalancerFactory();
497 ob_start(
'MediaWikiTestCase::wfResetOutputBuffersBarrier' );
501 $this->tmpFiles = array_merge( $this->tmpFiles, (
array)
$files );
508 if ( isset(
$status[
'name'] ) &&
509 $status[
'name'] ===
'MediaWikiTestCase::wfResetOutputBuffersBarrier'
514 $this->called[
'tearDown'] =
true;
516 foreach ( $this->tmpFiles
as $fileName ) {
517 if ( is_file( $fileName ) || ( is_link( $fileName ) ) ) {
519 } elseif ( is_dir( $fileName ) ) {
524 if ( $this->
needsDB() && $this->db ) {
526 while ( $this->db->trxLevel() > 0 ) {
527 $this->db->rollback( __METHOD__,
'flush' );
529 if ( $this->db->getType() ===
'mysql' ) {
530 $this->db->query(
"SET sql_mode = " . $this->db->addQuotes( $wgSQLMode ) );
535 foreach ( $this->mwGlobals
as $key =>
$value ) {
538 $this->mwGlobals = [];
541 if ( self::$serviceLocator && MediaWikiServices::getInstance() !== self::$serviceLocator ) {
542 MediaWikiServices::forceGlobalInstance( self::$serviceLocator );
547 if ( session_id() !==
'' ) {
548 session_write_close();
558 ini_set(
'error_reporting', $this->phpErrorLevel );
560 $oldHex = strtoupper( dechex( $this->phpErrorLevel ) );
562 $message =
"PHP error_reporting setting was left dirty: "
563 .
"was 0x$oldHex before test, 0x$newHex after test!";
565 $this->fail( $message );
576 $this->assertArrayHasKey(
'setUp', $this->called,
592 if ( MediaWikiServices::getInstance() === self::$serviceLocator ) {
596 MediaWikiServices::getInstance()->disableService(
$name );
597 MediaWikiServices::getInstance()->redefineService(
599 function ()
use ( $object ) {
641 if ( is_string( $pairs ) ) {
642 $pairs = [ $pairs =>
$value ];
647 foreach ( $pairs
as $key =>
$value ) {
664 if ( is_array(
$value ) ) {
666 if ( !is_scalar( $subValue ) && $subValue !== null ) {
695 if ( is_string( $globalKeys ) ) {
696 $globalKeys = [ $globalKeys ];
699 foreach ( $globalKeys
as $globalKey ) {
703 if ( !array_key_exists( $globalKey, $this->mwGlobals ) ) {
704 if ( !array_key_exists( $globalKey,
$GLOBALS ) ) {
705 throw new Exception(
"Global with key {$globalKey} doesn't exist and cant be stashed" );
710 if ( self::canShallowCopy(
$GLOBALS[$globalKey] ) ) {
711 $this->mwGlobals[$globalKey] =
$GLOBALS[$globalKey];
719 $this->mwGlobals[$globalKey] = clone
$GLOBALS[$globalKey];
724 $this->mwGlobals[$globalKey] =
$GLOBALS[$globalKey];
750 if ( !is_array(
$GLOBALS[$name] ) ) {
751 throw new MWException(
"MW global $name is not an array." );
756 foreach ( $values
as $k => $v ) {
779 if ( !$configOverrides ) {
783 $oldInstance = MediaWikiServices::getInstance();
784 $oldConfigFactory = $oldInstance->getConfigFactory();
786 $testConfig = self::makeTestConfig( null, $configOverrides );
791 $wiringFiles = $testConfig->get(
'ServiceWiringFiles' );
792 $newInstance->loadWiringFiles( $wiringFiles );
795 Hooks::run(
'MediaWikiServices', [ $newInstance ] );
798 $newInstance->redefineService(
$name, $callback );
801 self::installTestServices(
805 MediaWikiServices::forceGlobalInstance( $newInstance );
825 $langCode =
$lang->getCode();
832 'wgLanguageCode' => $langCode,
833 'wgContLang' => $langObj,
843 protected function setLogger( $channel, LoggerInterface $logger ) {
847 $provider = LoggerFactory::getProvider();
849 $singletons = $wrappedProvider->singletons;
851 if ( !isset( $this->loggers[$channel] ) ) {
852 $this->loggers[$channel] = isset( $singletons[
'loggers'][$channel] )
853 ? $singletons[
'loggers'][$channel] : null;
855 $singletons[
'loggers'][$channel] = $logger;
856 } elseif ( $provider instanceof
LegacySpi ) {
857 if ( !isset( $this->loggers[$channel] ) ) {
858 $this->loggers[$channel] = isset( $singletons[$channel] ) ? $singletons[$channel] : null;
860 $singletons[$channel] = $logger;
862 throw new LogicException( __METHOD__ .
': setting a logger for ' . get_class( $provider )
863 .
' is not implemented' );
865 $wrappedProvider->singletons = $singletons;
873 $provider = LoggerFactory::getProvider();
875 $singletons = $wrappedProvider->singletons;
876 foreach ( $this->loggers
as $channel => $logger ) {
878 if ( $logger === null ) {
879 unset( $singletons[
'loggers'][$channel] );
881 $singletons[
'loggers'][$channel] = $logger;
883 } elseif ( $provider instanceof
LegacySpi ) {
884 if ( $logger === null ) {
885 unset( $singletons[$channel] );
887 $singletons[$channel] = $logger;
891 $wrappedProvider->singletons = $singletons;
900 return $this->db->getType() ==
'oracle' ? self::ORA_DB_PREFIX : self::DB_PREFIX;
908 # if the test says it uses database tables, it needs the database
909 if ( $this->tablesUsed ) {
913 # if the test says it belongs to the Database group, it needs the database
914 $rc =
new ReflectionClass( $this );
915 if ( preg_match(
'/@group +Database/im', $rc->getDocComment() ) ) {
935 $text =
'Sample page for unit test.',
938 if ( is_string( $pageName ) ) {
944 $user = static::getTestSysop()->getUser();
945 $comment = __METHOD__ .
': Sample page for unit test.';
956 'id' =>
$page->getId(),
991 if ( $this->db->getType() ==
'oracle' ) {
993 # Insert 0 user to prevent FK violations
995 if ( !$this->db->selectField(
'user',
'1', [
'user_id' => 0 ] ) ) {
996 $this->db->insert(
'user', [
998 'user_name' =>
'Anonymous' ], __METHOD__, [
'IGNORE' ] );
1001 # Insert 0 page to prevent FK violations
1003 if ( !$this->db->selectField(
'page',
'1', [
'page_id' => 0 ] ) ) {
1004 $this->db->insert(
'page', [
1006 'page_namespace' => 0,
1007 'page_title' =>
' ',
1008 'page_restrictions' => null,
1009 'page_is_redirect' => 0,
1012 'page_touched' => $this->db->timestamp(),
1014 'page_len' => 0 ], __METHOD__, [
'IGNORE' ] );
1021 $user = static::getTestSysop()->getUser();
1025 if (
$page->getId() == 0 ) {
1026 $page->doEditContent(
1036 if ( session_id() !==
'' ) {
1037 session_write_close();
1053 if ( !self::$dbSetup ) {
1057 foreach ( $wgJobClasses
as $type => $class ) {
1064 self::$oldTablePrefix =
false;
1065 self::$dbSetup =
false;
1082 $tablesCloned = self::listTables( $db );
1083 $dbClone =
new CloneDatabase( $db, $tablesCloned, $prefix );
1084 $dbClone->useTemporaryTables( self::$useTemporaryTables );
1086 if ( ( $db->
getType() ==
'oracle' || !self::$useTemporaryTables ) && self::$reuseDB ) {
1091 $dbClone->cloneTableStructure();
1107 self::setupTestDB( $this->db, $testPrefix );
1109 if ( self::isUsingExternalStoreDB() ) {
1110 self::setupExternalStoreTestDBs( $testPrefix );
1136 if ( self::$dbSetup ) {
1142 'Cannot run unit tests, the database prefix is already "' . $prefix .
'"' );
1148 self::$dbSetup =
true;
1150 if ( !self::setupDatabaseWithTestPrefix( $db, $prefix ) ) {
1156 if ( $db->
getType() ==
'oracle' ) {
1157 $db->
query(
'BEGIN FILL_WIKI_INFO; END;' );
1167 $connections = self::getExternalStoreDatabaseConnections();
1168 foreach ( $connections
as $dbw ) {
1176 $dbw->tablePrefix( self::$oldTablePrefix );
1177 self::setupDatabaseWithTestPrefix( $dbw, $testPrefix );
1193 $defaultArray = (
array) $wgDefaultExternalStore;
1195 foreach ( $defaultArray
as $url ) {
1196 if ( strpos( $url,
'DB://' ) === 0 ) {
1197 list( $proto, $cluster ) = explode(
'://', $url, 2 );
1200 $lb = $externalStoreDB->getLoadBalancer( $cluster );
1216 if ( !$wgDefaultExternalStore ) {
1220 $defaultArray = (
array) $wgDefaultExternalStore;
1221 foreach ( $defaultArray
as $url ) {
1222 if ( strpos( $url,
'DB://' ) === 0 ) {
1238 $userTables = [
'user',
'user_groups',
'user_properties' ];
1239 $coreDBDataTables = array_merge( $userTables, [
'page',
'revision' ] );
1242 if ( array_intersect(
$tablesUsed, $userTables ) ) {
1247 $truncate = in_array(
$db->
getType(), [
'oracle',
'mysql' ] );
1250 if ( $tbl ==
'interwiki' ) {
1260 if ( $tbl ===
'page' ) {
1267 if ( array_intersect(
$tablesUsed, $coreDBDataTables ) ) {
1284 static $compatibility = [
1285 'assertEmpty' =>
'assertEmpty2',
1288 if ( isset( $compatibility[$func] ) ) {
1289 return call_user_func_array( [ $this, $compatibility[$func] ],
$args );
1291 throw new MWException(
"Called non-existent $func method on "
1292 . get_class( $this ) );
1302 $this->assertTrue(
$value ==
'', $msg );
1306 $tableName = substr( $tableName, strlen( $prefix ) );
1310 return strpos( $table,
'unittest_' ) !== 0;
1324 if ( $db->
getType() ===
'mysql' ) {
1325 static $viewListCache = null;
1326 if ( $viewListCache === null ) {
1327 $viewListCache = $db->
listViews( null, __METHOD__ );
1332 array_walk(
$tables, [ __CLASS__,
'unprefixTable' ], $prefix );
1335 $tables = array_filter(
$tables, [ __CLASS__,
'isNotUnittest' ] );
1337 if ( $db->
getType() ==
'sqlite' ) {
1340 unset(
$tables[
'searchindex_content'] );
1341 unset(
$tables[
'searchindex_segdir'] );
1342 unset(
$tables[
'searchindex_segments'] );
1355 throw new MWException( $this->db->getType() .
" is not currently supported for unit testing." );
1387 MediaWiki\suppressWarnings();
1389 MediaWiki\restoreWarnings();
1412 throw new MWException(
'When testing database state, the test cases\'s needDB()' .
1413 ' method should return true. Use @group Database or $this->tablesUsed.' );
1423 foreach ( $expectedRows
as $expected ) {
1424 $r =
$res->fetchRow();
1425 self::stripStringKeys( $r );
1428 $this->assertNotEmpty( $r,
"row #$i missing" );
1430 $this->assertEquals( $expected, $r,
"row #$i mismatches" );
1433 $r =
$res->fetchRow();
1434 self::stripStringKeys( $r );
1436 $this->assertFalse( $r,
"found extra row (after #$i)" );
1452 function ( $element ) {
1453 return [ $element ];
1472 $ordered =
false, $named =
false
1480 $expected = array_values( $expected );
1481 $actual = array_values( $actual );
1484 call_user_func_array(
1485 [ $this,
'assertEquals' ],
1486 array_merge( [ $expected, $actual ], array_slice( func_get_args(), 4 ) )
1503 $expected = str_replace(
'>',
">\n", $expected );
1504 $actual = str_replace(
'>',
">\n", $actual );
1506 $this->assertEquals( $expected, $actual, $msg );
1519 function ( $a, $b ) {
1535 if ( !is_array( $r ) ) {
1539 foreach ( $r
as $k => $v ) {
1540 if ( is_string( $k ) ) {
1560 if ( $actual ===
$value ) {
1561 $this->assertTrue(
true, $message );
1579 if ( class_exists(
$type ) || interface_exists(
$type ) ) {
1580 $this->assertInstanceOf(
$type, $actual, $message );
1582 $this->assertInternalType(
$type, $actual, $message );
1596 global $wgNamespaceContentModels;
1598 if ( isset( $wgNamespaceContentModels[$ns] ) ) {
1613 global $wgNamespaceContentModels;
1615 static $wikitextNS = null;
1616 if ( $wikitextNS !== null ) {
1621 if ( !isset( $wgNamespaceContentModels[
NS_MAIN] ) ) {
1636 $talk = array_filter(
$namespaces,
function ( $ns ) {
1642 $namespaces = array_merge( $namespaces, $talk );
1645 foreach ( $namespaces
as $ns ) {
1646 if ( !isset( $wgNamespaceContentModels[$ns] ) ||
1659 throw new MWException(
"No namespace defaults to wikitext!" );
1671 # This check may also protect against code injection in
1672 # case of broken installations.
1673 MediaWiki\suppressWarnings();
1674 $haveDiff3 = $wgDiff3 && file_exists( $wgDiff3 );
1675 MediaWiki\restoreWarnings();
1677 if ( !$haveDiff3 ) {
1678 $this->markTestSkipped(
"Skip test, since diff3 is not configured" );
1691 $loaded = extension_loaded( $extName );
1693 $this->markTestSkipped(
"PHP extension '$extName' is not loaded, skipping." );
1714 $html =
'<!DOCTYPE html><html><head><title>test</title></head><body>' .
$html .
'</body></html>';
1736 $this->markTestSkipped(
'Tidy extension not installed' );
1741 $allErrors = preg_split(
'/[\r\n]+/', $errorBuffer );
1746 $errors = preg_grep(
1747 '/^(.*Warning: (trimming empty|.* lacks ".*?" attribute).*|\s*)$/m',
1748 $allErrors, PREG_GREP_INVERT
1751 $this->assertEmpty( $errors, implode(
"\n", $errors ) );
1761 private static function tagMatch( $matcher, $actual, $isHtml =
true ) {
1763 $tags = PHPUnit_Util_XML::findNodes( $dom, $matcher, $isHtml );
1764 return count( $tags ) > 0 && $tags[0] instanceof DOMNode;
1778 public static function assertTag( $matcher, $actual, $message =
'', $isHtml =
true ) {
1781 self::assertTrue( self::tagMatch( $matcher, $actual, $isHtml ), $message );
1793 public static function assertNotTag( $matcher, $actual, $message =
'', $isHtml =
true ) {
1796 self::assertFalse( self::tagMatch( $matcher, $actual, $isHtml ), $message );
static factory(Title $title)
Create a WikiPage object of the appropriate class for the given title.
static $additionalOptions
static getMainWANInstance()
Get the main WAN cache object.
null means default in associative array with keys and values unescaped Should be merged with default with a value of false meaning to suppress the attribute in associative array with keys and values unescaped noclasses just before the function returns a value If you return an< a > element with HTML attributes $attribs and contents $html will be returned If you return $ret will be returned and may include noclasses & $html
deferred txt A few of the database updates required by various functions here can be deferred until after the result page is displayed to the user For updating the view updating the linked to tables after a etc PHP does not yet have any way to tell the server to actually return and disconnect while still running these but it might have such a feature in the future We handle these by creating a deferred update object and putting those objects on a global list
wfGetDB($db, $groups=[], $wiki=false)
Get a Database object.
static clearPendingUpdates()
Clear all pending updates without performing them.
the array() calling protocol came about after MediaWiki 1.4rc1.
const CONTENT_MODEL_WIKITEXT
select($table, $vars, $conds= '', $fname=__METHOD__, $options=[], $join_conds=[])
Execute a SELECT query constructed using the various parameters provided.
array $wgDefaultExternalStore
The place to put new revisions, false to put them in the local text table.
static setLBFactoryTriggers(LBFactory $LBFactory)
processing should stop and the error should be shown to the user * false
Apache License January AND DISTRIBUTION Definitions License shall mean the terms and conditions for use
wfMkdirParents($dir, $mode=null, $caller=null)
Make directory, and make all parent directories if they don't exist.
if(!$wgDBerrorLogTZ) $wgRequest
div flags Integer display flags(NO_ACTION_LINK, NO_EXTRA_USER_LINKS) 'LogException'returning false will NOT prevent logging $e
if(!isset($args[0])) $lang
static isTalk($index)
Is the given namespace a talk namespace?
MediaWiki has optional support for a high distributed memory object caching system For general information on but for a larger site with heavy load
static checkErrors($text, &$errorStr=null)
Check HTML for errors, used if $wgValidateAllHtml = true.
static changePrefix($prefix)
Change the table prefix on all open DB connections/.
injection txt This is an overview of how MediaWiki makes use of dependency injection The design described here grew from the discussion of RFC T384 The term dependency this means that anything an object needs to operate should be injected from the the object itself should only know narrow no concrete implementation of the logic it relies on The requirement to inject everything typically results in an architecture that based on two main types of and essentially stateless service objects that use other service objects to operate on the value objects As of the beginning MediaWiki is only starting to use the DI approach Much of the code still relies on global state or direct resulting in a highly cyclical dependency MediaWikiServices
lastError()
Get a description of the last error.
static resetIdByNameCache()
Reset the cache used in idFromName().
static newFromText($text, $defaultNamespace=NS_MAIN)
Create a new Title from text, such as what one would find in a link.
when a variable name is used in a it is silently declared as a new local masking the global
static destroySingleton()
Destroy the singleton instance.
tableName($name, $format= 'quoted')
Format a table name ready for use in constructing an SQL query.
getType()
Get the type of the DBMS, as it appears in $wgDBtype.
this hook is for auditing only RecentChangesLinked and Watchlist RecentChangesLinked and Watchlist e g Watchlist & $tables
The index of the header message $result[1]=The index of the body text message $result[2 through n]=Parameters passed to body text message.Please note the header message cannot receive/use parameters. 'ImportHandleLogItemXMLTag':When parsing a XML tag in a log item.Return false to stop further processing of the tag $reader:XMLReader object $logInfo:Array of information 'ImportHandlePageXMLTag':When parsing a XML tag in a page.Return false to stop further processing of the tag $reader:XMLReader object &$pageInfo:Array of information 'ImportHandleRevisionXMLTag':When parsing a XML tag in a page revision.Return false to stop further processing of the tag $reader:XMLReader object $pageInfo:Array of page information $revisionInfo:Array of revision information 'ImportHandleToplevelXMLTag':When parsing a top level XML tag.Return false to stop further processing of the tag $reader:XMLReader object 'ImportHandleUploadXMLTag':When parsing a XML tag in a file upload.Return false to stop further processing of the tag $reader:XMLReader object $revisionInfo:Array of information 'ImportLogInterwikiLink':Hook to change the interwiki link used in log entries and edit summaries for transwiki imports.&$fullInterwikiPrefix:Interwiki prefix, may contain colons.&$pageTitle:String that contains page title. 'ImportSources':Called when reading from the $wgImportSources configuration variable.Can be used to lazy-load the import sources list.&$importSources:The value of $wgImportSources.Modify as necessary.See the comment in DefaultSettings.php for the detail of how to structure this array. 'InfoAction':When building information to display on the action=info page.$context:IContextSource object &$pageInfo:Array of information 'InitializeArticleMaybeRedirect':MediaWiki check to see if title is a redirect.&$title:Title object for the current page &$request:WebRequest &$ignoreRedirect:boolean to skip redirect check &$target:Title/string of redirect target &$article:Article object 'InternalParseBeforeLinks':during Parser's internalParse method before links but after nowiki/noinclude/includeonly/onlyinclude and other processings.&$parser:Parser object &$text:string containing partially parsed text &$stripState:Parser's internal StripState object 'InternalParseBeforeSanitize':during Parser's internalParse method just before the parser removes unwanted/dangerous HTML tags and after nowiki/noinclude/includeonly/onlyinclude and other processings.Ideal for syntax-extensions after template/parser function execution which respect nowiki and HTML-comments.&$parser:Parser object &$text:string containing partially parsed text &$stripState:Parser's internal StripState object 'InterwikiLoadPrefix':When resolving if a given prefix is an interwiki or not.Return true without providing an interwiki to continue interwiki search.$prefix:interwiki prefix we are looking for.&$iwData:output array describing the interwiki with keys iw_url, iw_local, iw_trans and optionally iw_api and iw_wikiid. 'InvalidateEmailComplete':Called after a user's email has been invalidated successfully.$user:user(object) whose email is being invalidated 'IRCLineURL':When constructing the URL to use in an IRC notification.Callee may modify $url and $query, URL will be constructed as $url.$query &$url:URL to index.php &$query:Query string $rc:RecentChange object that triggered url generation 'IsFileCacheable':Override the result of Article::isFileCacheable()(if true) &$article:article(object) being checked 'IsTrustedProxy':Override the result of IP::isTrustedProxy() &$ip:IP being check &$result:Change this value to override the result of IP::isTrustedProxy() 'IsUploadAllowedFromUrl':Override the result of UploadFromUrl::isAllowedUrl() $url:URL used to upload from &$allowed:Boolean indicating if uploading is allowed for given URL 'isValidEmailAddr':Override the result of Sanitizer::validateEmail(), for instance to return false if the domain name doesn't match your organization.$addr:The e-mail address entered by the user &$result:Set this and return false to override the internal checks 'isValidPassword':Override the result of User::isValidPassword() $password:The password entered by the user &$result:Set this and return false to override the internal checks $user:User the password is being validated for 'Language::getMessagesFileName':$code:The language code or the language we're looking for a messages file for &$file:The messages file path, you can override this to change the location. 'LanguageGetMagic':DEPRECATED!Use $magicWords in a file listed in $wgExtensionMessagesFiles instead.Use this to define synonyms of magic words depending of the language &$magicExtensions:associative array of magic words synonyms $lang:language code(string) 'LanguageGetNamespaces':Provide custom ordering for namespaces or remove namespaces.Do not use this hook to add namespaces.Use CanonicalNamespaces for that.&$namespaces:Array of namespaces indexed by their numbers 'LanguageGetSpecialPageAliases':DEPRECATED!Use $specialPageAliases in a file listed in $wgExtensionMessagesFiles instead.Use to define aliases of special pages names depending of the language &$specialPageAliases:associative array of magic words synonyms $lang:language code(string) 'LanguageGetTranslatedLanguageNames':Provide translated language names.&$names:array of language code=> language name $code:language of the preferred translations 'LanguageLinks':Manipulate a page's language links.This is called in various places to allow extensions to define the effective language links for a page.$title:The page's Title.&$links:Associative array mapping language codes to prefixed links of the form"language:title".&$linkFlags:Associative array mapping prefixed links to arrays of flags.Currently unused, but planned to provide support for marking individual language links in the UI, e.g.for featured articles. 'LanguageSelector':Hook to change the language selector available on a page.$out:The output page.$cssClassName:CSS class name of the language selector. 'LinkBegin':DEPRECATED!Use HtmlPageLinkRendererBegin instead.Used when generating internal and interwiki links in Linker::link(), before processing starts.Return false to skip default processing and return $ret.See documentation for Linker::link() for details on the expected meanings of parameters.$skin:the Skin object $target:the Title that the link is pointing to &$html:the contents that the< a > tag should have(raw HTML) $result
static clear()
Clear the registry.
wfTempDir()
Tries to get the system directory for temporary files.
static getMain()
Static methods.
static singleton()
Get an instance of this class.
static getStoreObject($proto, array $params=[])
Get an external store object of the given type, with the given parameters.
makeConfig($name)
Create a given Config using the registered callback for $name.
MediaWiki Logger MonologSpi
static resetMain()
Resets singleton returned by getMain().
wfDeprecated($function, $version=false, $component=false, $callerOffset=2)
Throws a warning that $function is deprecated.
static getContentNamespaces()
Get a list of all namespace indices which are considered to contain content.
static getMutableTestUser($testName, $groups=[])
Get a TestUser object that the caller may modify.
namespace and then decline to actually register it file or subcat img or subcat $title
static run($event, array $args=[], $deprecatedVersion=null)
Call hook functions defined in Hooks::register and $wgHooks.
static makeContent($text, Title $title=null, $modelId=null, $format=null)
Convenience function for creating a Content object from a given textual representation.
Content object for wiki text pages.
static configuration should be added through ResourceLoaderGetConfigVars instead can be used to get the real title after the basic globals have been set but before ordinary actions take place or wrap services the preferred way to define a new service is the $wgServiceWiringFiles array $services
Provides a fallback sequence for Config objects.
namespace and then decline to actually register it & $namespaces
This document is intended to provide useful advice for parties seeking to redistribute MediaWiki to end users It s targeted particularly at maintainers for Linux since it s been observed that distribution packages of MediaWiki often break We ve consistently had to recommend that users seeking support use official tarballs instead of their distribution s and this often solves whatever problem the user is having It would be nice if this could such as
please add to it if you re going to add events to the MediaWiki code where normally authentication against an external auth plugin would be creating a local account $user
static singleton($wiki=false)
injection txt This is an overview of how MediaWiki makes use of dependency injection The design described here grew from the discussion of RFC T384 The term dependency this means that anything an object needs to operate should be injected from the the object itself should only know narrow no concrete implementation of the logic it relies on The requirement to inject everything typically results in an architecture that based on two main types of and essentially stateless service objects that use other service objects to operate on the value objects As of the beginning MediaWiki is only starting to use the DI approach Much of the code still relies on global state or direct resulting in a highly cyclical dependency which acts as the top level factory for services in MediaWiki which can be used to gain access to default instances of various services MediaWikiServices however also allows new services to be defined and default services to be redefined Services are defined or redefined by providing a callback the instantiator that will return a new instance of the service When it will create an instance of MediaWikiServices and populate it with the services defined in the files listed by thereby bootstrapping the DI framework Per $wgServiceWiringFiles lists includes ServiceWiring php
or there are no hooks to run
MediaWiki Logger LegacySpi
you have access to all of the normal MediaWiki so you can get a DB use the etc For full docs on the Maintenance class
listViews($prefix=null, $fname=__METHOD__)
Lists all the VIEWs in the database.
$wgDBprefix
Table name prefix.
wfRecursiveRemoveDir($dir)
Remove a directory and all its content.
static getImmutableTestUser($groups=[])
Get a TestUser object that the caller may not modify.
this hook is for auditing only RecentChangesLinked and Watchlist RecentChangesLinked and Watchlist e g Watchlist removed from all revisions and log entries to which it was applied This gives extensions a chance to take it off their books as the deletion has already been partly carried out by this point or something similar the user will be unable to create the tag set $status
MediaWiki Logger LoggerFactory implements a PSR[0] compatible message logging system Named Psr Log LoggerInterface instances can be obtained from the MediaWiki Logger LoggerFactory::getInstance() static method.MediaWiki\Logger\LoggerFactory expects a class implementing the MediaWiki\Logger\Spi interface to act as a factory for new Psr\Log\LoggerInterface instances.The"Spi"in MediaWiki\Logger\Spi stands for"service provider interface".An SPI is an API intended to be implemented or extended by a third party.This software design pattern is intended to enable framework extension and replaceable components.It is specifically used in the MediaWiki\Logger\LoggerFactory service to allow alternate PSR-3 logging implementations to be easily integrated with MediaWiki.The service provider interface allows the backend logging library to be implemented in multiple ways.The $wgMWLoggerDefaultSpi global provides the classname of the default MediaWiki\Logger\Spi implementation to be loaded at runtime.This can either be the name of a class implementing the MediaWiki\Logger\Spi with a zero argument const ructor or a callable that will return an MediaWiki\Logger\Spi instance.Alternately the MediaWiki\Logger\LoggerFactory MediaWiki Logger LoggerFactory
static clear()
Clear all the cached instances.
static newFromObject($object)
Return the same object, without access restrictions.
this hook is for auditing only or null if authentication failed before getting that far or null if we can t even determine that probably a stub it is not rendered in wiki pages or galleries in category pages allow injecting custom HTML after the section Any uses of the hook need to handle escaping see BaseTemplate::getToolbox and BaseTemplate::makeListItem for details on the format of individual items inside of this array or by returning and letting standard HTTP rendering take place modifiable or by returning false and taking over the output modifiable modifiable after all normalizations have been except for the $wgMaxImageArea check set to true or false to override the $wgMaxImageArea check result gives extension the possibility to transform it themselves $handler
$wgSQLMode
SQL Mode - default is turning off all modes, including strict, if set.
static factory($code)
Get a cached or new language object for a given language code.
A Config instance which stores all settings as a member variable.
static getValidNamespaces()
Returns an array of the namespaces (by integer id) that exist on the wiki.
do that in ParserLimitReportFormat instead use this to modify the parameters of the image and a DIV can begin in one section and end in another Make sure your code can handle that case gracefully See the EditSectionClearerLink extension for an example zero but section is usually empty its values are the globals values before the output is cached one of or reset my talk my contributions etc etc otherwise the built in rate limiting checks are if enabled allows for interception of redirect as a string mapping parameter names to values & $type
tablePrefix($prefix=null)
Get/set the table prefix.
delete($table, $conds, $fname=__METHOD__)
DELETE query wrapper.
wfGetCaller($level=2)
Get the name of the function which called this function wfGetCaller( 1 ) is the function with the wfG...
listTables($prefix=null, $fname=__METHOD__)
List all tables on the database.
do that in ParserLimitReportFormat instead use this to modify the parameters of the image and a DIV can begin in one section and end in another Make sure your code can handle that case gracefully See the EditSectionClearerLink extension for an example zero but section is usually empty its values are the globals values before the output is cached $page
query($sql, $fname=__METHOD__, $tempIgnore=false)
Run an SQL query and return the result.
static destroySingletons()
Destroy the singleton instances.
Allows to change the fields on the form that will be generated $name