(Translated by https://www.hiragana.jp/)
Manual:$wgLogActions - MediaWiki Jump to content

Manual:$wgLogActions

From mediawiki.org
Revision as of 09:12, 13 September 2015 by Shirayuki (talk | contribs) (translation tweaks)
Special pages: $wgLogActions
Lists the message key string for formatting individual events of each type and action when listed in the logs.
Introduced in version:1.7.0 (r14373)
Removed in version:still in use
Allowed values:array of strings
Default value:see below

Details

Lists the message key string for formatting individual events of each type and action when listed in the logs. Extensions with custom log types may add to this array. Same as $wgLogActionsHandlers but without function callbacks as values.

See Manual:Logging to Special:Log for more information about logging in MediaWiki.

Default value

The comment after each item indicates the version of MediaWiki in which it was introduced.

$wgLogActions = array(
    'block/block'       => 'blocklogentry',		// 1.7.0
    'block/unblock'     => 'unblocklogentry',		// 1.7.0
    'protect/protect'   => 'protectedarticle',		// 1.7.0
    'protect/modify'    => 'modifiedarticleprotection',	
    'protect/unprotect' => 'unprotectedarticle',	// 1.7.0
    'rights/rights'     => 'rightslogentry',		// 1.7.0
    'delete/delete'     => 'deletedarticle',		// 1.7.0
    'delete/restore'    => 'undeletedarticle',		// 1.7.0
    'delete/revision'   => 'revdelete-logentry',	// 1.7.0
    'upload/upload'     => 'uploadedimage',		// 1.7.0
    'upload/overwrite'  => 'overwroteimage',		
    'upload/revert'     => 'uploadedimage',		// 1.7.0
    'move/move'         => '1movedto2',			// 1.7.0
    'move/move_redir'   => '1movedto2_redir',		// 1.7.0
    'import/upload'     => 'import-logentry-upload',	// 1.7.0
    'import/interwiki'  => 'import-logentry-interwiki',	// 1.7.0
    'patrol/patrol'     => 'patrol-log-line', 		// 1.17
);