MediaWiki  1.28.1
HTMLUserTextField.php
Go to the documentation of this file.
1 <?php
2 
4 
17  public function __construct( $params ) {
18  $params += [
19  'exists' => false,
20  'ipallowed' => false,
21  ];
22 
23  parent::__construct( $params );
24  }
25 
26  public function validate( $value, $alldata ) {
27  // check, if a user exists with the given username
28  $user = User::newFromName( $value, false );
29 
30  if ( !$user ) {
31  return $this->msg( 'htmlform-user-not-valid', $value )->parse();
32  } elseif (
33  ( $this->mParams['exists'] && $user->getId() === 0 ) &&
34  !( $this->mParams['ipallowed'] && User::isIP( $value ) )
35  ) {
36  return $this->msg( 'htmlform-user-not-exists', $user->getName() )->parse();
37  }
38 
39  return parent::validate( $value, $alldata );
40  }
41 
42  protected function getInputWidget( $params ) {
43  return new UserInputWidget( $params );
44  }
45 
46  protected function shouldInfuseOOUI() {
47  return true;
48  }
49 
50  protected function getOOUIModules() {
51  return [ 'mediawiki.widgets.UserInputWidget' ];
52  }
53 
54  public function getInputHtml( $value ) {
55  // add the required module and css class for user suggestions in non-OOUI mode
56  $this->mParent->getOutput()->addModules( 'mediawiki.userSuggest' );
57  $this->mClass .= ' mw-autocomplete-user';
58 
59  // return parent html
60  return parent::getInputHTML( $value );
61  }
62 }
static newFromName($name, $validate= 'valid')
Static factory method for creation from username.
Definition: User.php:525
Apache License January AND DISTRIBUTION Definitions License shall mean the terms and conditions for use
msg()
Get a translated interface message.
$value
$params
static isIP($name)
Does the string match an anonymous IP address?
Definition: User.php:788
validate($value, $alldata)
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
Definition: hooks.txt:242
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
Definition: injection.txt:35
Implements a text input field for user names.