MediaWiki  1.28.1
NewUsersLogFormatter.php
Go to the documentation of this file.
1 <?php
32  protected function getMessageParameters() {
33  $params = parent::getMessageParameters();
34  $subtype = $this->entry->getSubtype();
35  if ( $subtype === 'create2' || $subtype === 'byemail' ) {
36  if ( isset( $params[3] ) ) {
37  $target = User::newFromId( $params[3] );
38  } else {
39  $target = User::newFromName( $this->entry->getTarget()->getText(), false );
40  }
41  $params[2] = Message::rawParam( $this->makeUserLink( $target ) );
42  $params[3] = $target->getName();
43  }
44 
45  return $params;
46  }
47 
48  public function getComment() {
49  $timestamp = wfTimestamp( TS_MW, $this->entry->getTimestamp() );
50  if ( $timestamp < '20080129000000' ) {
51  # Suppress $comment from old entries (before 2008-01-29),
52  # not needed and can contain incorrect links
53  return '';
54  }
55 
56  return parent::getComment();
57  }
58 
59  public function getPreloadTitles() {
60  $subtype = $this->entry->getSubtype();
61  if ( $subtype === 'create2' || $subtype === 'byemail' ) {
62  // add the user talk to LinkBatch for the userLink
63  return [ Title::makeTitle( NS_USER_TALK, $this->entry->getTarget()->getText() ) ];
64  }
65 
66  return [];
67  }
68 }
static newFromName($name, $validate= 'valid')
Static factory method for creation from username.
Definition: User.php:525
static rawParam($raw)
Definition: Message.php:985
makeUserLink(User $user, $toolFlags=0)
processing should stop and the error should be shown to the user * false
Definition: hooks.txt:189
static newFromId($id)
Static factory method for creation from a given user ID.
Definition: User.php:548
wfTimestamp($outputtype=TS_UNIX, $ts=0)
Get a timestamp string in one of various formats.
if($limit) $timestamp
This class formats new user log entries.
$params
const TS_MW
MediaWiki concatenated string timestamp (YYYYMMDDHHMMSS)
Definition: defines.php:11
Implements the default log formatting.
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
const NS_USER_TALK
Definition: Defines.php:59
static makeTitle($ns, $title, $fragment= '', $interwiki= '')
Create a new Title from a namespace index and a DB key.
Definition: Title.php:511