Podręcznik:$wgLogNames

From mediawiki.org
This page is a translated version of the page Manual:$wgLogNames and the translation is 40% complete.
Logging: $wgLogNames
Lists the message key string for each log type.
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 each log type. The localized messages will be listed in the user interface, as header of the log page for that log type and in the Special:Log dropdown. Extensions with custom log types may add to this array. If you follow the naming convention log-name-TYPE, where TYPE is your log type, you don't need to use this setting.

Domyślna wartość

Wersja MediaWiki:
1.13
$wgLogNames = [
	'' => 'all-logs-page',
	'block' => 'blocklogpage',
	'protect' => 'protectlogpage',
	'rights' => 'rightslog',
	'delete' => 'dellogpage',
	'upload' => 'uploadlogpage',
	'move' => 'movelogpage',
	'import' => 'importlogpage',
	'patrol' => 'patrol-log-page',
	'merge' => 'mergelog',
	'suppress' => 'suppressionlog',
];
Wersja MediaWiki:
1.12
$wgLogNames = array(
	''        => 'all-logs-page',
	'block'   => 'blocklogpage',
	'protect' => 'protectlogpage',
	'rights'  => 'rightslog',
	'delete'  => 'dellogpage',
	'upload'  => 'uploadlogpage',
	'move'    => 'movelogpage',
	'import'  => 'importlogpage',
	'patrol'  => 'patrol-log-page',
	'merge'   => 'mergelog',
);
Wersja MediaWiki:
1.11
$wgLogNames = array(
	''        => 'all-logs-page',
	'block'   => 'blocklogpage',
	'protect' => 'protectlogpage',
	'rights'  => 'rightslog',
	'delete'  => 'dellogpage',
	'upload'  => 'uploadlogpage',
	'move'    => 'movelogpage',
	'import'  => 'importlogpage',
	'patrol'  => 'patrol-log-page',
);
Wersja MediaWiki:
1.10
$wgLogNames = array(
	''        => 'log',
	'block'   => 'blocklogpage',
	'protect' => 'protectlogpage',
	'rights'  => 'rightslog',
	'delete'  => 'dellogpage',
	'upload'  => 'uploadlogpage',
	'move'    => 'movelogpage',
	'import'  => 'importlogpage',
	'patrol'  => 'patrol-log-page',
);
Wersje MediaWiki:
1.7 – 1.9
$wgLogNames = array(
	''        => 'log',
	'block'   => 'blocklogpage',
	'protect' => 'protectlogpage',
	'rights'  => 'rightslog',
	'delete'  => 'dellogpage',
	'upload'  => 'uploadlogpage',
	'move'    => 'movelogpage',
	'import'  => 'importlogpage'
);