Manual:$wgSkipSkin

From MediaWiki.org
Jump to: navigation, search
Language: English  • Deutsch • Ελληνικά • français • 日本語 • русский
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" );