Manual:$wgLogActions

From MediaWiki.org

Jump to: navigation, search
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

Other settings: Alphabetical | By Function


[edit] 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.

[edit] 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
);