Go to the documentation of this file.
42 return MediaWikiServices::getInstance()->getGenderCache();
50 if ( $this->
default ===
null ) {
72 if ( $this->misses >= $this->missLimit &&
$wgUser->getName() !==
$username ) {
73 if ( $this->misses === $this->missLimit ) {
75 wfDebug( __METHOD__ .
": too many misses, returning default onwards\n" );
81 $this->
doQuery( $username, $caller );
99 foreach ( $data
as $ns => $pagenames ) {
103 foreach ( array_keys( $pagenames )
as $username ) {
108 $this->
doQuery( array_keys( $users ), $caller );
128 $users[] = $titleObj->getText();
131 $this->
doQuery( $users, $caller );
139 public function doQuery( $users, $caller =
'' ) {
151 $usersToCheck[] =
$name;
156 if (
count( $usersToCheck ) === 0 ) {
161 $table = [
'user',
'user_properties' ];
162 $fields = [
'user_name',
'up_value' ];
163 $conds = [
'user_name' => $usersToCheck ];
164 $joins = [
'user_properties' =>
165 [
'LEFT JOIN', [
'user_id = up_user',
'up_property' =>
'gender' ] ] ];
167 $comment = __METHOD__;
168 if ( strval( $caller ) !==
'' ) {
169 $comment .=
"/$caller";
171 $res =
$dbr->select( $table, $fields, $conds, $comment, [], $joins );
173 foreach (
$res as $row ) {
174 $this->
cache[$row->user_name] = $row->up_value ? $row->up_value :
$default;
181 if ( $indexSlash !==
false ) {
static getDefaultOption( $opt)
Get a given default option value.
doLinkBatch( $data, $caller='')
Wrapper for doQuery that processes raw LinkBatch data.
static newFromText( $text, $defaultNamespace=NS_MAIN)
Create a new Title from text, such as what one would find in a link.
static hasGenderDistinction( $index)
Does the namespace (potentially) have different aliases for different genders.
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
Caches user genders when needed to use correct namespace aliases.
Allows to change the fields on the form that will be generated $name
static isValidUserName( $name)
Is the input a valid username?
you have access to all of the normal MediaWiki so you can get a DB use the cache
getGenderOf( $username, $caller='')
Returns the gender for given username.
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
doTitlesArray( $titles, $caller='')
Wrapper for doQuery that processes a title or string array.
getDefault()
Returns the default gender option in this wiki.
namespace and then decline to actually register it file or subcat img or subcat $title
linkcache txt The LinkCache class maintains a list of article titles and the information about whether or not the article exists in the database This is used to mark up links when displaying a page If the same link appears more than once on any page then it only has to be looked up once In most cases link lookups are done in batches with the LinkBatch class or the equivalent in so the link cache is mostly useful for short snippets of parsed and for links in the navigation areas of the skin The link cache was formerly used to track links used in a document for the purposes of updating the link tables This application is now deprecated To create a you can use the following $titles
wfGetDB( $db, $groups=[], $wiki=false)
Get a Database object.
when a variable name is used in a it is silently declared as a new masking the global
wfDebug( $text, $dest='all', array $context=[])
Sends a line to the debug log if enabled or, optionally, to a comment in output.
static normalizeUsername( $username)
doQuery( $users, $caller='')
Preloads genders for given list of users.
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
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
The User object encapsulates all of the user-specific settings (user_id, name, rights,...
this hook is for auditing only or null if authentication failed before getting that far $username
the array() calling protocol came about after MediaWiki 1.4rc1.