Manual:$wgLogActions/pl

This page is a translated version of the page Manual:$wgLogActions and the translation is 20% complete.
Logging: $wgLogActions
Lists the message key string for formatting individual events of each type and action when listed in the logs.
Wprowadzono w wersji:1.7.0 (r14373)
Usunięto w wersji:nadal w użyciu
Dozwolone wartości:(array of strings)
Domyślna wartość:patrz poniżej

Szczegóły

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. Keys are in the same format as $wgLogActionsHandlers .

New log types should be defined using $wgLogActionsHandlers instead, which allows for better localisation of the log messages (see T26620).

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

Default value

Wersja MediaWiki:
1.27
/**
 * 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.
 */
$wgLogActions = [];
Older versions
Wersja MediaWiki:
1.26
$wgLogActions = array(
	'protect/modify' => 'modifiedarticleprotection',
	'protect/protect' => 'protectedarticle',
	'protect/unprotect' => 'unprotectedarticle',
);
Wersja MediaWiki:
1.25
$wgLogActions = array(
	'protect/protect' => 'protectedarticle',
	'protect/modify' => 'modifiedarticleprotection',
	'protect/unprotect' => 'unprotectedarticle',
	'protect/move_prot' => 'movedarticleprotection',
);
Wersja MediaWiki:
1.24
$wgLogActions = array(
	'block/block' => 'blocklogentry',
	'block/unblock' => 'unblocklogentry',
	'block/reblock' => 'reblock-logentry',
	'protect/protect' => 'protectedarticle',
	'protect/modify' => 'modifiedarticleprotection',
	'protect/unprotect' => 'unprotectedarticle',
	'protect/move_prot' => 'movedarticleprotection',
	'import/upload' => 'import-logentry-upload',
	'import/interwiki' => 'import-logentry-interwiki',
	'merge/merge' => 'pagemerge-logentry',
	'suppress/block' => 'blocklogentry',
	'suppress/reblock' => 'reblock-logentry',
);
Wersje MediaWiki:
1.21 – 1.23
$wgLogActions = array(
	'block/block' => 'blocklogentry',
	'block/unblock' => 'unblocklogentry',
	'block/reblock' => 'reblock-logentry',
	'protect/protect' => 'protectedarticle',
	'protect/modify' => 'modifiedarticleprotection',
	'protect/unprotect' => 'unprotectedarticle',
	'protect/move_prot' => 'movedarticleprotection',
	'upload/upload' => 'uploadedimage',
	'upload/overwrite' => 'overwroteimage',
	'upload/revert' => 'uploadedimage',
	'import/upload' => 'import-logentry-upload',
	'import/interwiki' => 'import-logentry-interwiki',
	'merge/merge' => 'pagemerge-logentry',
	'suppress/block' => 'blocklogentry',
	'suppress/reblock' => 'reblock-logentry',
);
Wersje MediaWiki:
1.19 – 1.20
$wgLogActions = array(
	'block/block'        => 'blocklogentry',
	'block/unblock'      => 'unblocklogentry',
	'block/reblock'      => 'reblock-logentry',
	'protect/protect'    => 'protectedarticle',
	'protect/modify'     => 'modifiedarticleprotection',
	'protect/unprotect'  => 'unprotectedarticle',
	'protect/move_prot'  => 'movedarticleprotection',
	'rights/rights'      => 'rightslogentry',
	'rights/autopromote' => 'rightslogentry-autopromote',
	'upload/upload'      => 'uploadedimage',
	'upload/overwrite'   => 'overwroteimage',
	'upload/revert'      => 'uploadedimage',
	'import/upload'      => 'import-logentry-upload',
	'import/interwiki'   => 'import-logentry-interwiki',
	'merge/merge'        => 'pagemerge-logentry',
	'suppress/block'     => 'blocklogentry',
	'suppress/reblock'   => 'reblock-logentry',
);
Wersje MediaWiki:
1.7 – 1.18
$wgLogActions = array(
	'block/block'        => 'blocklogentry',              // 1.7.0
	'block/unblock'      => 'unblocklogentry',            // 1.7.0
	'block/reblock'      => 'reblock-logentry',           // 1.18.0
	'protect/protect'    => 'protectedarticle',           // 1.7.0
	'protect/modify'     => 'modifiedarticleprotection',  // 1.11.0
	'protect/unprotect'  => 'unprotectedarticle',         // 1.7.0
	'protect/move_prot'  => 'movedarticleprotection',     // 1.18.0
	'rights/rights'      => 'rightslogentry',             // 1.7.0
	'rights/autopromote' => 'rightslogentry-autopromote', // 1.18.0
	'delete/delete'      => 'deletedarticle',             // 1.7.0
	'delete/restore'     => 'undeletedarticle',           // 1.7.0
	'delete/revision'    => 'revdelete-logentry',         // 1.7.0
	'delete/event'       => 'logdelete-logentry',         // 1.18.0
	'upload/upload'      => 'uploadedimage',              // 1.7.0
	'upload/overwrite'   => 'overwroteimage',             // 1.11.0
	'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
	'merge/merge'        => 'pagemerge-logentry',         // 1.18.0
	'suppress/revision'  => 'revdelete-logentry',         // 1.18.0
	'suppress/file'      => 'revdelete-logentry',         // 1.18.0
	'suppress/event'     => 'logdelete-logentry',         // 1.18.0
	'suppress/delete'    => 'suppressedarticle',          // 1.18.0
	'suppress/block'     => 'blocklogentry',              // 1.18.0
	'suppress/reblock'   => 'reblock-logentry',           // 1.18.0
	'patrol/patrol'      => 'patrol-log-line',            // 1.17.0
);

Zobacz też