Jump to content

Manual:$wgLogTypes/ko

From mediawiki.org
This page is a translated version of the page Manual:$wgLogTypes and the translation is 8% complete.
Logging: $wgLogTypes
List of log types.
이 변수가 소개된 버전:1.7.0 (r14373)
이 변수가 사라진 버전:계속해서 쓰이고 있음
허용값:(array of strings)
기본값:see below

Details

List of log types. 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.

기본값

미디어위키 버전:
1.44
$wgLogTypes = [
	'',
	'block',
	'protect',
	'rights',
	'delete',
	'upload',
	'move',
	'import',
	'interwiki',
	'patrol',
	'merge',
	'suppress',
	'tag',
	'managetags',
	'contentmodel',
	'renameuser',
];
미디어위키 버전:
1.40 – 1.43
$wgLogTypes = [
	'',
	'block',
	'protect',
	'rights',
	'delete',
	'upload',
	'move',
	'import',
	'patrol',
	'merge',
	'suppress',
	'tag',
	'managetags',
	'contentmodel',
	'renameuser',
];
미디어위키 버전:
1.26 – 1.39
$wgLogTypes = [
	'',
	'block',
	'protect',
	'rights',
	'delete',
	'upload',
	'move',
	'import',
	'patrol',
	'merge',
	'suppress',
	'tag',
	'managetags',
	'contentmodel',
];
미디어위키 버전:
1.25
$wgLogTypes = array(
	'',
	'block',
	'protect',
	'rights',
	'delete',
	'upload',
	'move',
	'import',
	'patrol',
	'merge',
	'suppress',
	'tag',
	'managetags',
);
미디어위키 버전:
1.13 – 1.24
$wgLogTypes = array(
	'',
	'block',
	'protect',
	'rights',
	'delete',
	'upload',
	'move',
	'import',
	'patrol',
	'merge',
	'suppress',
);
미디어위키 버전:
1.12
$wgLogTypes = array( '',
	'block',
	'protect',
	'rights',
	'delete',
	'upload',
	'move',
	'import',
	'patrol',
	'merge',
);
미디어위키 버전:
1.10 – 1.11
$wgLogTypes = array( '',
	'block',
	'protect',
	'rights',
	'delete',
	'upload',
	'move',
	'import',
	'patrol',
);
미디어위키 버전:
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.