MediaWiki master
MediaWiki\Logging\BlockLogFormatter Class Reference

This class formats block log entries. More...

Inherits MediaWiki\Logging\LogFormatter.

Collaboration diagram for MediaWiki\Logging\BlockLogFormatter:

Public Member Functions

 __construct (LogEntry $entry, TitleParser $titleParser, NamespaceInfo $namespaceInfo)
 
 formatParametersForApi ()
 Format parameters for API output.The result array should generally map named keys to values. Index and type should be omitted, e.g. "4::foo" should be returned as "foo" in the output. Values should generally be unformatted.Renames or removals of keys besides from the legacy numeric format to modern named style should be avoided. Any renames should be announced to the mediawiki-api-announce mailing list.
Since
1.25
Stability: stable
to override
Returns
array

 
 getActionLinks ()
 Returns extra links that comes after the action text, like "revert", etc.
 
 getPreloadTitles ()
 
- Public Member Functions inherited from MediaWiki\Logging\LogFormatter
 __construct (LogEntry $entry)
 
 canViewLogType ()
 Check if a log item type can be displayed.
 
 getActionText ()
 Gets the log action, including username.
 
 getComment ()
 Gets the user provided comment.
 
 getCommentFormatter ()
 
 getContentLanguage ()
 
 getIRCActionComment ()
 Even uglier hack to maintain backwards compatibility with IRC bots (T36508).
 
 getIRCActionText ()
 Even uglier hack to maintain backwards compatibility with IRC bots (T36508).
 
 getLinkRenderer ()
 
 getMessageParametersForTesting ()
 
 getPerformerElement ()
 Provides the name of the user who performed the log action.
 
 getPlainActionText ()
 Ugly hack to produce plaintext version of the message.
 
 getUserEditTracker ()
 
 setAudience ( $audience)
 Set the visibility restrictions for displaying content.
 
 setCommentFormatter (CommentFormatter $commentFormatter)
 
 setContentLanguage (Language $contentLanguage)
 
 setContext (IContextSource $context)
 Replace the default context.
 
 setLinkRenderer (LinkRenderer $linkRenderer)
 
 setShowUserToolLinks ( $value)
 If set to true, will produce user tool links after the user name.
 
 setUserEditTracker (UserEditTracker $userEditTracker)
 

Static Public Member Functions

static formatBlockFlag ( $flag, Language $lang)
 Translate a block log flag if possible.
 
static formatBlockFlags ( $flags, Language $lang)
 Convert a comma-delimited list of block log flags into a more readable (and translated) form.
 
- Static Public Member Functions inherited from MediaWiki\Logging\LogFormatter
static newFromEntry (LogEntry $entry)
 Constructs a new formatter suitable for given entry.
 
static newFromRow ( $row)
 Handy shortcut for constructing a formatter directly from database row.
 

Protected Member Functions

 extractParameters ()
 Extracts the optional extra parameters for use in action messages.
 
 getMessageKey ()
 Returns a key to be used for formatting the action sentence.
 
 getMessageParameters ()
 Formats parameters intended for action message from array of all parameters.
 
 getParametersForApi ()
 Get the array of parameters, converted from legacy format if necessary.
 
- Protected Member Functions inherited from MediaWiki\Logging\LogFormatter
 canView ( $field)
 Check if a log item can be displayed.
 
 formatParameterValue ( $type, $value)
 Formats parameters values dependent to their type.
 
 formatParameterValueForApi ( $name, $type, $value)
 Format a single parameter value for API output.
 
 getActionMessage ()
 Returns a sentence describing the log action.
 
 getRestrictedElement ( $message)
 Helper method for displaying restricted element.
 
 makePageLink (?Title $title=null, $parameters=[], $html=null)
 Helper to make a link to the page, taking the plaintext value in consideration.
 
 makeUserLink (UserIdentity $user, $toolFlags=0)
 
 msg ( $key,... $params)
 Shortcut for wfMessage which honors local context.
 
 styleRestrictedElement ( $content)
 Helper method for styling restricted element.
 

Additional Inherited Members

- Public Attributes inherited from MediaWiki\Logging\LogFormatter
IContextSource $context
 Context for logging.
 
const FOR_PUBLIC = 1
 
const FOR_THIS_USER = 2
 
- Protected Attributes inherited from MediaWiki\Logging\LogFormatter
int $audience = self::FOR_PUBLIC
 Constant for handling log_deleted.
 
LogEntryBase $entry
 
bool $irctext = false
 
bool $linkFlood = false
 Whether to output user tool links.
 
array null $parsedParameters
 
bool $plaintext = false
 Set to true if we are constructing a message text that is going to be included in page history or send to IRC feed.
 

Detailed Description

This class formats block log entries.

Since
1.25

Definition at line 44 of file BlockLogFormatter.php.

Constructor & Destructor Documentation

◆ __construct()

MediaWiki\Logging\BlockLogFormatter::__construct ( LogEntry $entry,
TitleParser $titleParser,
NamespaceInfo $namespaceInfo )

Definition at line 48 of file BlockLogFormatter.php.

References MediaWiki\Logging\LogFormatter\$entry.

Member Function Documentation

◆ extractParameters()

MediaWiki\Logging\BlockLogFormatter::extractParameters ( )
protected

Extracts the optional extra parameters for use in action messages.

The array indexes start from number 3.

Stability: stable
to override
Returns
array

Reimplemented from MediaWiki\Logging\LogFormatter.

Definition at line 168 of file BlockLogFormatter.php.

Referenced by MediaWiki\Logging\BlockLogFormatter\getPreloadTitles().

◆ formatBlockFlag()

static MediaWiki\Logging\BlockLogFormatter::formatBlockFlag ( $flag,
Language $lang )
static

Translate a block log flag if possible.

Parameters
string$flagFlag to translate
Language$langLanguage object to use
Returns
string

Definition at line 292 of file BlockLogFormatter.php.

References wfMessage().

Referenced by MediaWiki\Logging\BlockLogFormatter\formatBlockFlags().

◆ formatBlockFlags()

static MediaWiki\Logging\BlockLogFormatter::formatBlockFlags ( $flags,
Language $lang )
static

Convert a comma-delimited list of block log flags into a more readable (and translated) form.

Parameters
string$flagsFlags to format
Language$lang
Returns
string

Definition at line 269 of file BlockLogFormatter.php.

References MediaWiki\Language\Language\commaList(), MediaWiki\Logging\BlockLogFormatter\formatBlockFlag(), and wfMessage().

Referenced by MediaWiki\Logging\BlockLogFormatter\getMessageParameters().

◆ formatParametersForApi()

MediaWiki\Logging\BlockLogFormatter::formatParametersForApi ( )

Format parameters for API output.The result array should generally map named keys to values. Index and type should be omitted, e.g. "4::foo" should be returned as "foo" in the output. Values should generally be unformatted.Renames or removals of keys besides from the legacy numeric format to modern named style should be avoided. Any renames should be announced to the mediawiki-api-announce mailing list.

Since
1.25
Stability: stable
to override
Returns
array

Reimplemented from MediaWiki\Logging\LogFormatter.

Definition at line 374 of file BlockLogFormatter.php.

References MediaWiki\Logging\LogFormatter\formatParameterValueForApi().

◆ getActionLinks()

MediaWiki\Logging\BlockLogFormatter::getActionLinks ( )

Returns extra links that comes after the action text, like "revert", etc.

Stability: stable
to override
Returns
string

Reimplemented from MediaWiki\Logging\LogFormatter.

Definition at line 201 of file BlockLogFormatter.php.

References MediaWiki\Logging\LogPage\DELETED_ACTION, MediaWiki\Logging\LogFormatter\getLinkRenderer(), MediaWiki\SpecialPage\SpecialPage\getTitleFor(), MediaWiki\Logging\LogFormatter\msg(), and MediaWiki\MainConfigNames\UseCodexSpecialBlock.

◆ getMessageKey()

MediaWiki\Logging\BlockLogFormatter::getMessageKey ( )
protected

Returns a key to be used for formatting the action sentence.

Default is logentry-TYPE-SUBTYPE for modern logs. Legacy log types will use custom keys, and subclasses can also alter the key depending on the entry itself.

Stability: stable
to override
Returns
string Message key

Reimplemented from MediaWiki\Logging\LogFormatter.

Definition at line 395 of file BlockLogFormatter.php.

◆ getMessageParameters()

MediaWiki\Logging\BlockLogFormatter::getMessageParameters ( )
protected

Formats parameters intended for action message from array of all parameters.

There are three hardcoded parameters:

  • $1: user name with premade link
  • $2: usable for gender magic function
  • $3: target page with premade link More parameters might be present, depending on what code created the log entry.

The parameters are returned as a non-associative array that can be passed to Message::params(), so $logFormatter->getMessageParameters()[0] is the $1 parameter in the message and so on.

Stability: stable
to override
Returns
array
See also
ManualLogEntry::setParameters() for how parameters are determined.

Reimplemented from MediaWiki\Logging\LogFormatter.

Definition at line 58 of file BlockLogFormatter.php.

References MediaWiki\MainConfigNames\EnablePartialActionBlocks, MediaWiki\Logging\BlockLogFormatter\formatBlockFlags(), MediaWiki\SpecialPage\SpecialPage\getTitleFor(), MediaWiki\Logging\LogFormatter\makePageLink(), MediaWiki\Logging\LogFormatter\makeUserLink(), MediaWiki\Logging\LogFormatter\msg(), NS_MAIN, MediaWiki\Message\Message\rawParam(), and wfTimestamp().

◆ getParametersForApi()

MediaWiki\Logging\BlockLogFormatter::getParametersForApi ( )
protected

Get the array of parameters, converted from legacy format if necessary.

Since
1.25
Stability: stable
to override
Returns
array

Reimplemented from MediaWiki\Logging\LogFormatter.

Definition at line 316 of file BlockLogFormatter.php.

References MediaWiki\Logging\LogFormatter\$entry, MediaWiki\Logging\LogEntry\getParameters(), MediaWiki\Logging\LogEntry\getSubtype(), MediaWiki\Logging\LogEntry\getTimestamp(), MediaWiki\Logging\LogFormatter\msg(), wfIsInfinity(), and wfTimestamp().

◆ getPreloadTitles()

MediaWiki\Logging\BlockLogFormatter::getPreloadTitles ( )
Stability: stable
to override
Returns
LinkTarget[] Array of titles that should be preloaded with LinkBatch

Reimplemented from MediaWiki\Logging\LogFormatter.

Definition at line 181 of file BlockLogFormatter.php.

References MediaWiki\Logging\BlockLogFormatter\extractParameters().


The documentation for this class was generated from the following file: