Manual:$wgLogActions

From mediawiki.org
This page is a translated version of the page Manual:$wgLogActions and the translation is 47% complete.
ロギング: $wgLogActions
Lists the message key string for formatting individual events of each type and action when listed in the logs.
導入されたバージョン:1.7.0 (r14373)
除去されたバージョン:使用中
許容される値:(文字列の配列)
既定値:下記参照

詳細

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:Special:Log 用に記録を登録する for more information about logging in MediaWiki.

既定値

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 = [];
より古いバージョン
MediaWiki バージョン:
1.26
$wgLogActions = array(
	'protect/modify' => 'modifiedarticleprotection',
	'protect/protect' => 'protectedarticle',
	'protect/unprotect' => 'unprotectedarticle',
);
MediaWiki バージョン:
1.25
$wgLogActions = array(
	'protect/protect' => 'protectedarticle',
	'protect/modify' => 'modifiedarticleprotection',
	'protect/unprotect' => 'unprotectedarticle',
	'protect/move_prot' => 'movedarticleprotection',
);
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',
);
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',
);
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',
);
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
);

関連項目