Manual:$wgSkipSkin
From MediaWiki.org
Language: | English • Deutsch • Ελληνικά • français • 日本語 • русский |
---|
![]() |
This deprecated feature should no longer be used, but is still available for reasons of backwards compatibility. This feature was deprecated in version 1.23.0. Please see $wgSkipSkins for an alternative way to use this feature. |
Skins: $wgSkipSkin | |
---|---|
Specify the name of a skin that should not be presented in the list of available skins. |
|
Introduced in version: | 1.4.1 |
Deprecated in version: | 1.23.0 (git #c5b5e450) |
Removed in version: | still in use |
Allowed values: | string |
Default value: | '' |
Other settings: Alphabetical | By Function
§Details[edit | edit source]
Specify the name of a skin that should not be presented in the list of available skins. Use for blacklisting a skin which you do not want to remove from the skins
directory.
Deprecated since version 1.23. Use $wgSkipSkins
instead. For example:
$wgSkipSkin = "cologneblue";
would become
$wgSkipSkins[] = "cologneblue"; // or alternatively... $wgSkipSkins = array( "cologneblue" );