Go to the documentation of this file.
43 $this->
id = intval( $id );
44 $this->newOptions =
array();
53 return $this->database;
64 return in_array( $database, $wgLocalDatabases );
75 public static function whoIs( $database, $id, $ignoreInvalidDB =
false ) {
92 public static function newFromId( $database, $id, $ignoreInvalidDB =
false ) {
118 $row = $db->selectRow(
'user',
119 array(
'user_id',
'user_name' ),
122 if ( $row !==
false ) {
125 intval( $row->user_id ) );
139 public static function getDB( $database, $ignoreInvalidDB =
false ) {
141 if ( $ignoreInvalidDB || self::validDatabase( $database ) ) {
163 return $this->
getId() == 0;
172 return $this->
name .
'@' . $this->database;
189 $res = $this->db->select(
'user_groups',
191 array(
'ug_user' => $this->
id ),
194 foreach (
$res as $row ) {
195 $groups[] = $row->ug_group;
204 $this->db->insert(
'user_groups',
206 'ug_user' => $this->
id,
207 'ug_group' => $group,
217 $this->db->delete(
'user_groups',
219 'ug_user' => $this->
id,
220 'ug_group' => $group,
229 $this->newOptions[$option] =
$value;
234 foreach ( $this->newOptions
as $option =>
$value ) {
236 'up_user' => $this->
id,
237 'up_property' => $option,
241 $this->db->replace(
'user_properties',
252 $this->db->update(
'user',
253 array(
'user_touched' => $this->db->timestamp() ),
254 array(
'user_id' => $this->
id ),
259 $wgMemc->delete( $key );
static & makeTitle( $ns, $title, $fragment='', $interwiki='')
Create a new Title from a namespace index and a DB key.
skin txt MediaWiki includes four core it has been set as the default in MediaWiki since the replacing Monobook it had been been the default skin since before being replaced by Vector largely rewritten in while keeping its appearance Several legacy skins were removed in the as the burden of supporting them became too heavy to bear Those in etc for skin dependent CSS etc for skin dependent JavaScript These can also be customised on a per user by etc This feature has led to a wide variety of user styles becoming that gallery is a good place to ending in php
globals will be eliminated from MediaWiki replaced by an application object which would be passed to constructors Whether that would be an convenient solution remains to be but certainly PHP makes such object oriented programming models easier than they were in previous versions For the time being MediaWiki programmers will have to work in an environment with some global context At the time of globals were initialised on startup by MediaWiki of these were configuration which are documented in DefaultSettings php There is no comprehensive documentation for the remaining however some of the most important ones are listed below They are typically initialised either in index php or in Setup php For a description of the see design txt $wgTitle Title object created from the request URL $wgOut OutputPage object for HTTP response $wgUser User object for the user associated with the current request $wgLang Language object selected by user preferences $wgContLang Language object associated with the wiki being viewed $wgParser Parser object Parser extensions register their hooks here $wgRequest WebRequest to get request data $wgMemc
& wfGetDB( $db, $groups=array(), $wiki=false)
Get a Database object.
Cut-down copy of User interface for local-interwiki-database user rights manipulation.
addGroup( $group)
Replaces User::addUserGroup()
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()
invalidateCache()
Replaces User::touchUser()
the array() calling protocol came about after MediaWiki 1.4rc1.
List of Api Query prop modules.
getUserPage()
Same as User::getUserPage()
when a variable name is used in a it is silently declared as a new masking the global
wfForeignMemcKey( $db, $prefix)
Get a cache key for a foreign DB.
static newFromId( $database, $id, $ignoreInvalidDB=false)
Factory function; get a remote user entry by ID number.
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)
Allows to change the fields on the form that will be generated $name
static validDatabase( $database)
Confirm the selected database name is a valid local interwiki database name.
removeGroup( $group)
Replaces User::removeUserGroup()
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
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)
Constructor.
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 whoIs( $database, $id, $ignoreInvalidDB=false)
Same as User::whoIs()
getDBName()
Accessor for $this->database.
getGroups()
Replaces User::getUserGroups()