Go to the documentation of this file.
43 $this->
id = intval( $id );
44 $this->newOptions = [];
53 return $this->database;
75 public static function whoIs( $database, $id, $ignoreInvalidDB =
false ) {
92 public static function newFromId( $database, $id, $ignoreInvalidDB =
false ) {
123 $userdb =
self::getDB( $database, $ignoreInvalidDB );
128 if ( $db && $userdb ) {
129 $row = $userdb->selectRow(
'user',
130 [
'user_id',
'user_name' ],
134 if ( $row !==
false ) {
137 intval( $row->user_id ) );
151 public static function getDB( $database, $ignoreInvalidDB =
false ) {
153 if ( $ignoreInvalidDB || self::validDatabase( $database ) ) {
175 return $this->
getId() == 0;
184 return $this->
name .
'@' . $this->database;
201 return array_keys( self::getGroupMemberships() );
227 return $ugm->insert(
true, $this->db );
241 return $ugm->delete( $this->db );
250 $this->newOptions[$option] =
$value;
255 foreach ( $this->newOptions
as $option =>
$value ) {
257 'up_user' => $this->id,
258 'up_property' => $option,
262 $this->db->replace(
'user_properties',
263 [ [
'up_user',
'up_property' ] ],
275 [
'user_touched' => $this->db->timestamp() ],
276 [
'user_id' => $this->id ],
280 $domainId = $this->db->getDomainID();
282 $this->db->onTransactionPreCommitOrIdle(
283 function ()
use ( $domainId, $userId ) {
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 account $user
$wgSharedDB
Shared database for multiple wikis.
wfTimestamp( $outputtype=TS_UNIX, $ts=0)
Get a timestamp string in one of various formats.
as see the revision history and available at free of to any person obtaining a copy of this software and associated documentation to deal in the Software without including without limitation the rights to use
getGroupMemberships()
Replaces User::getGroupMemberships()
Allows to change the fields on the form that will be generated $name
Cut-down copy of User interface for local-interwiki-database user rights manipulation.
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
static getMembershipsForUser( $userId, IDatabase $db=null)
Returns UserGroupMembership objects for all the groups a user currently belongs to.
controlled by $wgMainCacheType controlled by $wgParserCacheType controlled by $wgMessageCacheType If you set CACHE_NONE to one of the three control default value for MediaWiki still create a but requests to it are no ops and we always fall through to the database If the cache daemon can t be it should also disable itself fairly smoothly By $wgMemc is used but when it is $parserMemc or $messageMemc this is mentioned $wgDBname
setOption( $option, $value)
Replaces User::setOption()
wfGetDB( $db, $groups=[], $wiki=false)
Get a Database object.
invalidateCache()
Replaces User::touchUser()
getUserPage()
Same as User::getUserPage()
static makeTitle( $ns, $title, $fragment='', $interwiki='')
Create a new Title from a namespace index and a DB key.
when a variable name is used in a it is silently declared as a new masking the global
static newFromId( $database, $id, $ignoreInvalidDB=false)
Factory function; get a remote user entry by ID number.
$wgLocalDatabases
Other wikis on this site, can be administered from a single developer account.
design txt This is a brief overview of the new design More thorough and up to date information is available on the documentation wiki at etc Handles the details of getting and saving to the user table of the database
static newFromLookup( $database, $field, $value, $ignoreInvalidDB=false)
static validDatabase( $database)
Confirm the selected database name is a valid local interwiki database name.
removeGroup( $group)
Replaces User::removeGroup()
getName()
Same as User::getName()
static newFromName( $database, $name, $ignoreInvalidDB=false)
Factory function; get a remote user entry by name.
__construct( $db, $database, $name, $id)
do that in ParserLimitReportFormat instead use this to modify the parameters of the image all existing parser cache entries will be invalid To avoid you ll need to handle that somehow(e.g. with the RejectParserCacheValue hook) because MediaWiki won 't do it for you. & $defaults also a ContextSource after deleting those rows but within the same transaction $rows
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
static getDB( $database, $ignoreInvalidDB=false)
Open a database connection to work on for the requested user.
design txt This is a brief overview of the new design More thorough and up to date information is available on the documentation wiki at name
static getMembership( $userId, $group, IDatabase $db=null)
Returns a UserGroupMembership object that pertains to the given user and group, or false if the user ...
static whoIs( $database, $id, $ignoreInvalidDB=false)
Same as User::whoIs()
getDBName()
Accessor for $this->database.
static purge( $wikiId, $userId)
addGroup( $group, $expiry=null)
Replaces User::addGroup()
Represents a "user group membership" – a specific instance of a user belonging to a group.
getGroups()
Replaces User::getUserGroups()