This page is a translated version of the page Manual:$wgLogTypes and the translation is 67% complete.
日志记录: $wgLogTypes
日志类型列表。
引进版本:1.7.0 (r14373)
移除版本:仍在使用
允许的值:(字符串数组)
默认值:参见下方

详情

日志类型列表。 The logging system has two levels: an event type, which describes the general category and can be viewed as a named subset of all logs; and an action, which is a specific kind of event that can exist in that log type.

This setting is used for validating log search parameters and generating the log search UIs. Log types not present here will still be accepted for new log entries and displayed in log event lists.

默认值

MediaWiki版本:
1.40
$wgLogTypes = [
	'',
	'block',
	'protect',
	'rights',
	'delete',
	'upload',
	'move',
	'import',
	'patrol',
	'merge',
	'suppress',
	'tag',
	'managetags',
	'contentmodel',
	'renameuser',
];
MediaWiki版本:
1.26 – 1.39
$wgLogTypes = [
	'',
	'block',
	'protect',
	'rights',
	'delete',
	'upload',
	'move',
	'import',
	'patrol',
	'merge',
	'suppress',
	'tag',
	'managetags',
	'contentmodel',
];
MediaWiki版本:
1.25
$wgLogTypes = array(
	'',
	'block',
	'protect',
	'rights',
	'delete',
	'upload',
	'move',
	'import',
	'patrol',
	'merge',
	'suppress',
	'tag',
	'managetags',
);
MediaWiki版本:
1.13 – 1.24
$wgLogTypes = array(
	'',
	'block',
	'protect',
	'rights',
	'delete',
	'upload',
	'move',
	'import',
	'patrol',
	'merge',
	'suppress',
);
MediaWiki版本:
1.12
$wgLogTypes = array( '',
	'block',
	'protect',
	'rights',
	'delete',
	'upload',
	'move',
	'import',
	'patrol',
	'merge',
);
MediaWiki版本:
1.10 – 1.11
$wgLogTypes = array( '',
	'block',
	'protect',
	'rights',
	'delete',
	'upload',
	'move',
	'import',
	'patrol',
);
MediaWiki版本:
1.7 – 1.9
$wgLogTypes = array( '',
	'block',
	'protect',
	'rights',
	'delete',
	'upload',
	'move',
	'import' );

Gotchas

If you are adding a log type, its name should be 32 bytes or less. If you choose a name longer than 32 bytes, the full name will be kept in the variable but only the first 32 bytes will go into the log table of the database, so that when you try to view records in your custom log, there will appear to be none.