MediaWiki  REL1_31
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 }
User\newFromId
static newFromId( $id)
Static factory method for creation from a given user ID.
Definition: User.php:614
NewUsersLogFormatter\getPreloadTitles
getPreloadTitles()
Definition: NewUsersLogFormatter.php:59
LogFormatter\makeUserLink
makeUserLink(User $user, $toolFlags=0)
Definition: LogFormatter.php:743
wfTimestamp
wfTimestamp( $outputtype=TS_UNIX, $ts=0)
Get a timestamp string in one of various formats.
Definition: GlobalFunctions.php:1980
$params
$params
Definition: styleTest.css.php:40
User\newFromName
static newFromName( $name, $validate='valid')
Static factory method for creation from username.
Definition: User.php:591
php
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:37
Title\makeTitle
static makeTitle( $ns, $title, $fragment='', $interwiki='')
Create a new Title from a namespace index and a DB key.
Definition: Title.php:534
NS_USER_TALK
const NS_USER_TALK
Definition: Defines.php:77
Message\rawParam
static rawParam( $raw)
Definition: Message.php:1017
NewUsersLogFormatter\getComment
getComment()
Gets the user provided comment.
Definition: NewUsersLogFormatter.php:48
LogFormatter
Implements the default log formatting.
Definition: LogFormatter.php:38
NewUsersLogFormatter\getMessageParameters
getMessageParameters()
Formats parameters intented for action message from array of all parameters.
Definition: NewUsersLogFormatter.php:32
NewUsersLogFormatter
This class formats new user log entries.
Definition: NewUsersLogFormatter.php:31